(element, options)
| 188 | // ============================== |
| 189 | |
| 190 | var Button = function (element, options) { |
| 191 | this.$element = $(element) |
| 192 | this.options = $.extend({}, Button.DEFAULTS, options) |
| 193 | } |
| 194 | |
| 195 | Button.DEFAULTS = { |
| 196 | loadingText: 'loading...' |
nothing calls this directly
no outgoing calls
no test coverage detected