Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
unsatisfiableness
/
vendors
/
cropper
/
src
/
js
:
cropper.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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(); }