| 1234567891011121314151617181920 |
- (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;
- }));
|