H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
tiptopkimblescleaning
/
wp-includes
/
js
/
Nama File / Folder
Size
Action
codemirror
--
NONE
crop
--
NONE
dist
--
NONE
imgareaselect
--
NONE
jcrop
--
NONE
jquery
--
NONE
mediaelement
--
NONE
plupload
--
NONE
swfupload
--
NONE
thickbox
--
NONE
tinymce
--
NONE
admin-bar.min.js
3.495KB
Hapus
Edit
Rename
autosave.min.js
5.391KB
Hapus
Edit
Rename
backbone.js
75.971KB
Hapus
Edit
Rename
customize-preview-widgets.min.js
7.695KB
Hapus
Edit
Rename
heartbeat.min.js
5.795KB
Hapus
Edit
Rename
json2.min.js
3.081KB
Hapus
Edit
Rename
masonry.min.js
23.572KB
Hapus
Edit
Rename
media-grid.js
29.117KB
Hapus
Edit
Rename
media-models.js
44.6KB
Hapus
Edit
Rename
media-models.min.js
13.713KB
Hapus
Edit
Rename
quicktags.js
22.085KB
Hapus
Edit
Rename
quicktags.min.js
10.931KB
Hapus
Edit
Rename
twemoji.min.js
11.057KB
Hapus
Edit
Rename
underscore.min.js
15.775KB
Hapus
Edit
Rename
utils.min.js
1.824KB
Hapus
Edit
Rename
wp-auth-check.js
4.126KB
Hapus
Edit
Rename
wp-backbone.min.js
2.976KB
Hapus
Edit
Rename
wp-embed.min.js
1.4KB
Hapus
Edit
Rename
wp-emoji-loader.min.js
1.817KB
Hapus
Edit
Rename
wp-emoji-release.min.js
13.912KB
Hapus
Edit
Rename
wp-list-revisions.js
0.947KB
Hapus
Edit
Rename
wp-list-revisions.min.js
0.585KB
Hapus
Edit
Rename
wp-lists.min.js
7.262KB
Hapus
Edit
Rename
wp-sanitize.js
1.318KB
Hapus
Edit
Rename
wp-sanitize.min.js
0.447KB
Hapus
Edit
Rename
wp-util.min.js
1.054KB
Hapus
Edit
Rename
wplink.js
20.581KB
Hapus
Edit
Rename
/** * @output wp-includes/js/wp-sanitize.js */ ( function () { window.wp = window.wp || {}; /** * wp.sanitize * * Helper functions to sanitize strings. */ wp.sanitize = { /** * Strip HTML tags. * * @param {string} text Text to have the HTML tags striped out of. * * @return Stripped text. */ stripTags: function( text ) { text = text || ''; // Do the replacement. var _text = text .replace( /<!--[\s\S]*?(-->|$)/g, '' ) .replace( /<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/ig, '' ) .replace( /<\/?[a-z][\s\S]*?(>|$)/ig, '' ); // If the initial text is not equal to the modified text, // do the search-replace again, until there is nothing to be replaced. if ( _text !== text ) { return wp.sanitize.stripTags( _text ); } // Return the text with stripped tags. return _text; }, /** * Strip HTML tags and convert HTML entities. * * @param {string} text Text to strip tags and convert HTML entities. * * @return Sanitized text. False on failure. */ stripTagsAndEncodeText: function( text ) { var _text = wp.sanitize.stripTags( text ), textarea = document.createElement( 'textarea' ); try { textarea.textContent = _text; _text = wp.sanitize.stripTags( textarea.value ); } catch ( er ) {} return _text; } }; }() );