(element, options)
| 187 | // ============================== |
| 188 | |
| 189 | var Button = function (element, options) { |
| 190 | this.$element = $(element) |
| 191 | this.options = $.extend({}, Button.DEFAULTS, options) |
| 192 | this.isLoading = false |
| 193 | } |
| 194 | |
| 195 | Button.VERSION = '3.3.7' |
| 196 |