Created
April 7, 2016 09:37
-
-
Save rodde177/a18f2685edd194685fc2dddf26d4ca09 to your computer and use it in GitHub Desktop.
Extending prototype.js classes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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