Skip to content

Instantly share code, notes, and snippets.

@wrumsby
Created July 2, 2013 09:09
Show Gist options
  • Select an option

  • Save wrumsby/5907846 to your computer and use it in GitHub Desktop.

Select an option

Save wrumsby/5907846 to your computer and use it in GitHub Desktop.
ExtJS class definition
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