2017-03-13 17:48:32 -04:00
|
|
|
import $ from 'jquery';
|
2017-03-01 17:01:33 -05:00
|
|
|
|
2017-03-01 18:02:01 -05:00
|
|
|
// bootstrap jQuery plugins
|
2018-04-18 16:52:58 -04:00
|
|
|
import 'bootstrap';
|
2017-03-13 17:48:32 -04:00
|
|
|
|
|
|
|
// custom jQuery functions
|
|
|
|
$.fn.extend({
|
2018-10-24 15:17:03 -04:00
|
|
|
disable() {
|
|
|
|
return $(this)
|
|
|
|
.prop('disabled', true)
|
|
|
|
.addClass('disabled');
|
|
|
|
},
|
|
|
|
enable() {
|
|
|
|
return $(this)
|
|
|
|
.prop('disabled', false)
|
|
|
|
.removeClass('disabled');
|
|
|
|
},
|
2017-03-13 17:48:32 -04:00
|
|
|
});
|