Skip to content

Instantly share code, notes, and snippets.

@rodde177
Created April 7, 2016 09:37
Show Gist options
  • Select an option

  • Save rodde177/a18f2685edd194685fc2dddf26d4ca09 to your computer and use it in GitHub Desktop.

Select an option

Save rodde177/a18f2685edd194685fc2dddf26d4ca09 to your computer and use it in GitHub Desktop.
Extending prototype.js classes
var NWTWidget = Class.create(WysiwygWidget.Widget, {
switchOptionsContainer : function($super, containerId){
$super(containerId);
setTimeout(function(){
Uspblocks.createIcons();
},1000);
}
});
WysiwygWidget.Widget = NWTWidget;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment