(element, options)
| 179 | // ============================== |
| 180 | |
| 181 | var Button = function (element, options) { |
| 182 | this.$element = $(element) |
| 183 | this.options = $.extend({}, Button.DEFAULTS, options) |
| 184 | this.isLoading = false |
| 185 | } |
| 186 | |
| 187 | Button.VERSION = '3.3.5' |
| 188 |