H69UNtblNBNpha2dtB1Odn8qYp1Qk5NK2gi7yfceofo9N
/
home
/
ymswebso
/
public_html
/
gradeadevelopments
/
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
clipboard.js
28.802KB
Hapus
Edit
Rename
clipboard.min.js
10.178KB
Hapus
Edit
Rename
customize-loader.js
7.719KB
Hapus
Edit
Rename
customize-loader.min.js
3.47KB
Hapus
Edit
Rename
customize-selective-refresh.js
32.551KB
Hapus
Edit
Rename
customize-views.js
4.946KB
Hapus
Edit
Rename
hoverIntent.js
4.834KB
Hapus
Edit
Rename
masonry.min.js
23.572KB
Hapus
Edit
Rename
media-editor.js
28.437KB
Hapus
Edit
Rename
media-editor.min.js
10.653KB
Hapus
Edit
Rename
media-grid.js
28.818KB
Hapus
Edit
Rename
media-models.js
44.396KB
Hapus
Edit
Rename
quicktags.min.js
10.886KB
Hapus
Edit
Rename
tw-sack.js
4.853KB
Hapus
Edit
Rename
twemoji.js
27.354KB
Hapus
Edit
Rename
twemoji.min.js
11.042KB
Hapus
Edit
Rename
wp-auth-check.js
4.126KB
Hapus
Edit
Rename
wp-auth-check.min.js
1.635KB
Hapus
Edit
Rename
wp-backbone.min.js
2.97KB
Hapus
Edit
Rename
wp-emoji-loader.js
6.79KB
Hapus
Edit
Rename
wp-lists.min.js
7.242KB
Hapus
Edit
Rename
wp-sanitize.js
1.318KB
Hapus
Edit
Rename
wp-util.min.js
1.052KB
Hapus
Edit
Rename
wplink.min.js
10.948KB
Hapus
Edit
Rename
zxcvbn-async.min.js
0.344KB
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; } }; }() );