Skip to content

Instantly share code, notes, and snippets.

@davglass
Created May 3, 2009 00:55
Show Gist options
  • Save davglass/105773 to your computer and use it in GitHub Desktop.
Save davglass/105773 to your computer and use it in GitHub Desktop.
(function() {
var myEditor = new YAHOO.widget.Editor('foo', {
//Your Config
});
myEditor.on('afterNodeChange', function() {
if (this._hasSelection()) {
this.toolbar.enableButton('mybutton');
} else {
this.toolbar.disableButton('mybutton');
}
}, myEditor, true);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment