25 lines
530 B
Plaintext
25 lines
530 B
Plaintext
/*!
|
|
* Cropper v@VERSION
|
|
* https://github.com/fengyuanchen/cropper
|
|
*
|
|
* Copyright (c) 2014-@YEAR Fengyuan Chen and contributors
|
|
* Released under the MIT license
|
|
*
|
|
* Date: @DATE
|
|
*/
|
|
|
|
(function (factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD. Register as anonymous module.
|
|
define(['jquery'], factory);
|
|
} else if (typeof exports === 'object') {
|
|
// Node / CommonJS
|
|
factory(require('jquery'));
|
|
} else {
|
|
// Browser globals.
|
|
factory(jQuery);
|
|
}
|
|
})(function ($) {
|
|
|
|
'use strict';
|