biojs-util-area_selector
Advanced tools
Comparing version 0.0.1 to 0.0.2
{ | ||
"name": "biojs-util-area_selector", | ||
"description": "Component to select an area over a component", | ||
"version": "0.0.1", | ||
"version": "0.0.2", | ||
"homepage": "http://github.com/biojs/biojs2", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -10,6 +10,6 @@ | ||
this.opt = input; | ||
this.opt.resize_left= (input.resize_left) ? input.resize_left: true; | ||
this.opt.resize_right= (input.resize_right) ? input.resize_right: true; | ||
this.opt.resize_top= (input.resize_top) ? input.resize_top: true; | ||
this.opt.resize_bottom= (input.resize_bottom)? input.resize_bottom: true; | ||
this.opt.resize_left= (typeof input.resize_left!= "undefined") ? input.resize_left: true; | ||
this.opt.resize_right= (typeof input.resize_right!= "undefined") ? input.resize_right: true; | ||
this.opt.resize_top= (typeof input.resize_top!= "undefined") ? input.resize_top: true; | ||
this.opt.resize_bottom= (typeof input.resize_bottom!= "undefined") ? input.resize_bottom: true; | ||
$(function() { | ||
@@ -16,0 +16,0 @@ self._draw(); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
717387