(element, options)
| 184 | * ============================== */ |
| 185 | |
| 186 | var Button = function (element, options) { |
| 187 | this.$element = $(element) |
| 188 | this.options = $.extend({}, $.fn.button.defaults, options) |
| 189 | } |
| 190 | |
| 191 | Button.prototype.setState = function (state) { |
| 192 | var d = 'disabled' |