(element, options)
| 1504 | * ============================== */ |
| 1505 | |
| 1506 | var Button = function (element, options) { |
| 1507 | this.$element = $(element) |
| 1508 | this.options = $.extend({}, $.fn.button.defaults, options) |
| 1509 | } |
| 1510 | |
| 1511 | Button.prototype.setState = function (state) { |
| 1512 | var d = 'disabled' |