sanitize wip

This commit is contained in:
Sam Saffron 2013-02-20 10:16:38 +11:00
parent c914a3cf22
commit a1099ed74e
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
/* jQuery sanitizer for html, used by our previewer */
(function( $ ) {
$.fn.sanitize = function() {
$.find('*').each(function(){
});
};
})( jQuery );