Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / src / core / examples / src / Sample / ability / CanComposeSongs.js
1 Ext.define('Sample.ability.CanComposeSongs', {
2     canComposeSongs: true,
3
4     composeSongs: function() {
5         alert(this.getName() + " is composing songs");
6
7         return this;
8     }
9 });