Add consultation module assets and libraries
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
(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;
|
||||
}));
|
||||
Reference in New Issue
Block a user