/**
* @class Ext.button.Split
* @extends Ext.button.Button
* A split button that provides a built-in dropdown arrow that can fire an event separately from the default
@@ -54,7 +71,7 @@ Ext.define('Ext.button.Split', {
// private
initComponent : function(){
this.callParent();
- /**
+ /**
* @event arrowclick
* Fires when this button's arrow is clicked
* @param {MenuButton} this
@@ -63,7 +80,7 @@ Ext.define('Ext.button.Split', {
this.addEvents("arrowclick");
},
- /**
+ /**
* Sets this button's arrow click handler.
* @param {Function} handler The function to call when the arrow is clicked
* @param {Object} scope (optional) Scope for the function passed above
@@ -99,4 +116,6 @@ Ext.define('Ext.button.Split', {
}
}
}
-});