@Description: A plugins that allows you to strip html to text only
var save = new sb.widget.editor.plugin({
name :'strip all text',
title : 'Clear All Formatting',
handler : function(){
if(confirm('Are you sure you want to clear all HTML formatting')){
this.document.body.innerHTML =this.document.body.innerHTML.stripHTML();
}
}
});
@File: widget/editor/plugin.js