0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
gentelella-1.3.0
/
vendors
/
cropper
/
src
/
js
/
[
Home
]
File: cropper.js
function Cropper(element, options) { this.$element = $(element); this.options = $.extend({}, Cropper.DEFAULTS, $.isPlainObject(options) && options); this.isLoaded = false; this.isBuilt = false; this.isCompleted = false; this.isRotated = false; this.isCropped = false; this.isDisabled = false; this.isReplaced = false; this.isLimited = false; this.wheeling = false; this.isImg = false; this.originalUrl = ''; this.canvas = null; this.cropBox = null; this.init(); }