(element, options)
| 9393 | // ============================== |
| 9394 | |
| 9395 | var Button = function (element, options) { |
| 9396 | this.$element = $(element) |
| 9397 | this.options = $.extend({}, Button.DEFAULTS, options) |
| 9398 | this.isLoading = false |
| 9399 | } |
| 9400 | |
| 9401 | Button.VERSION = '3.3.4' |
| 9402 |