Lines Matching defs:Button
2 * A Button Widget
13 * Creates a Button
15 * @class Button
20 function Button(config) {
21 Button.superclass.constructor.apply(this, arguments);
24 /* Button extends Widget */
25 Y.extend(Button, Y.Widget, {
80 // Y.Button static properties
140 Y.mix(Button.prototype, Y.ButtonCore.prototype);
146 * @extends Button
151 Button.superclass.constructor.apply(this, arguments);
155 /* ToggleButton extends Button */
156 Y.extend(ToggleButton, Button, {
226 cb.toggleClass(Button.CLASS_NAMES.SELECTED, value);
313 Y.Button = Button;