PHP Classes

File: vendors/cropper/src/js/cropper.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/cropper/src/js/cropper.js   Download  
File: vendors/cropper/src/js/cropper.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 532 bytes
 

Contents

Class file image Download
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(); }