Core Docs | Additional Modules Docs

sb.widget.editor.plugins.justifyCenter


@Description: A plugins that justifies selected text to the center
@File: widget/editor/plugin.js

sb.widget.editor.plugins.justifyFull


@Description: A plugins that justifies selected text full
@File: widget/editor/plugin.js

sb.widget.editor.plugins.justifyLeft


@Description: A plugins that justifies selected text to the left
@File: widget/editor/plugin.js

sb.widget.editor.plugins.justifyRight


@Description: A plugins that justifies selected text to the right
@File: widget/editor/plugin.js

sb.widget.editor.plugins.save


@Description: A plugins that allows you to save the html
@File: widget/editor/plugin.js

sb.widget.editor.plugins.searchPlugin


@Description: A plugins that adds search and replace to the widget
@File: widget/editor/plugin.js

sb.widget.editor.plugins.stripToText


@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