WhitespaceClean-resources/others

whitespace pass over files
for reference regex that was used s/[ \t]+(\r?\n)/\1/
This commit is contained in:
mafoo
2016-03-11 13:57:01 +00:00
parent 11c2176a15
commit 2b39287bdc
18 changed files with 166 additions and 166 deletions
+3 -3
View File
@@ -169,17 +169,17 @@ tinyMCE_GZ.init({
//error handling
}
}
function ajaxLoad(id, txt) {
var inst = tinyMCE.getInstanceById(id);
// Do you ajax call here
inst.setHTML(txt);
}
function ajaxSave() {
var inst = tinyMCE.getInstanceById('content');
// Do you ajax call here
alert(inst.getHTML());
}