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