summaryrefslogtreecommitdiff
path: root/_darcs/pristine/js/jcrop/jquery.Jcrop.go.js
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-08 20:56:09 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-08 20:56:09 +0000
commit07e9e2dc3241eef1b803e655a5273f79cb758806 (patch)
tree0846f3e3cbefd39041e580bffbc7556eb7f45c93 /_darcs/pristine/js/jcrop/jquery.Jcrop.go.js
parente67affdbbcdcaa9f43750389922b802d0b425ddb (diff)
Remove _darcs from git repository
Not sure how or why this got in there.
Diffstat (limited to '_darcs/pristine/js/jcrop/jquery.Jcrop.go.js')
-rw-r--r--_darcs/pristine/js/jcrop/jquery.Jcrop.go.js41
1 files changed, 0 insertions, 41 deletions
diff --git a/_darcs/pristine/js/jcrop/jquery.Jcrop.go.js b/_darcs/pristine/js/jcrop/jquery.Jcrop.go.js
deleted file mode 100644
index 7c5b5e4e6..000000000
--- a/_darcs/pristine/js/jcrop/jquery.Jcrop.go.js
+++ /dev/null
@@ -1,41 +0,0 @@
- $(function(){
- jQuery("#avatar_original img.avatar").Jcrop({ onChange: showPreview,
- setSelect: [ 0, 0, $("#avatar_original img.avatar").attr("width"), $("#avatar_original img.avatar").attr("height") ],
- onSelect: updateCoords,
- aspectRatio: 1,
- boxWidth: 480,
- boxHeight: 480,
- bgColor: '#000',
- bgOpacity: .4
- });
- });
-
- function showPreview(coords) {
- var rx = 96 / coords.w;
- var ry = 96 / coords.h;
-
- var img_width = $("#avatar_original img.avatar").attr("width");
- var img_height = $("#avatar_original img.avatar").attr("height");
-
-
- $('#avatar_preview img.avatar').css({
- width: Math.round(rx *img_width) + 'px',
- height: Math.round(ry * img_height) + 'px',
- marginLeft: '-' + Math.round(rx * coords.x) + 'px',
- marginTop: '-' + Math.round(ry * coords.y) + 'px'
- });
- };
-
- function updateCoords(c) {
- $('#avatar_crop_x').val(c.x);
- $('#avatar_crop_y').val(c.y);
- $('#avatar_crop_w').val(c.w);
- $('#avatar_crop_h').val(c.h);
- };
-
- function checkCoords() {
- if (parseInt($('#avatar_crop_w').val())) return true;
- alert('Please select a crop region then press submit.');
- return false;
- };
-