mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-14 20:13:01 +03:00
21 lines
558 B
JavaScript
21 lines
558 B
JavaScript
|
(function (factory, define, require, module) {
|
||
|
'use strict';
|
||
|
|
||
|
if (typeof define === 'function' && define.amd) {
|
||
|
// AMD
|
||
|
define(['jquery'], factory);
|
||
|
} else if (typeof module === 'object' && typeof module.exports === 'object') {
|
||
|
// CommonJS
|
||
|
module.exports = factory(require('jquery'));
|
||
|
} else {
|
||
|
// Global jQuery
|
||
|
factory(jQuery);
|
||
|
}
|
||
|
}(function ($) {
|
||
|
'use strict';
|
||
|
|
||
|
// rename to avoid conflict with jquery-resizable
|
||
|
$.fn.uiresizable = $.fn.resizable;
|
||
|
delete $.fn.resizable;
|
||
|
}));
|