Created
July 2, 2013 09:09
-
-
Save wrumsby/5907846 to your computer and use it in GitHub Desktop.
ExtJS class definition
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
| Ext.define('My.Bolderiser', { | |
| requires: ['Ext.Element'], | |
| embolden: function (el) { | |
| var element = Ext.get(el); | |
| element.setStyle('font-weight', 'bold'); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment