summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-21 20:33:37 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-21 20:33:37 +0000
commit41f74218f2ab70b78ba96d386b41fb6a1f958f75 (patch)
tree72cc106f4f94f9edd64a2f8cda950ec195adf029 /js
parentac1cc954ae080dbbb906cae009148eb3796de43d (diff)
Profile avatar settings
Diffstat (limited to 'js')
-rw-r--r--js/jcrop/jquery.Jcrop.go.js (renamed from js/jquery.Jcrop.go.js)20
-rw-r--r--js/jcrop/jquery.Jcrop.pack.js (renamed from js/jquery.Jcrop.pack.js)0
2 files changed, 10 insertions, 10 deletions
diff --git a/js/jquery.Jcrop.go.js b/js/jcrop/jquery.Jcrop.go.js
index e5d587354..d5176c14c 100644
--- a/js/jquery.Jcrop.go.js
+++ b/js/jcrop/jquery.Jcrop.go.js
@@ -1,7 +1,7 @@
$(function(){
- jQuery("#photo_original img").Jcrop({
+ jQuery("#avatar_original img").Jcrop({
onChange: showPreview,
- setSelect: [ 0, 0, $("#photo_original img").attr("width"), $("#photo_original img").attr("height") ],
+ setSelect: [ 0, 0, $("#avatar_original img").attr("width"), $("#avatar_original img").attr("height") ],
onSelect: updateCoords,
aspectRatio: 1,
boxWidth: 480,
@@ -15,10 +15,10 @@
var rx = 96 / coords.w;
var ry = 96 / coords.h;
- var img_width = $("#photo_original img").attr("width");
- var img_height = $("#photo_original img").attr("height");
+ var img_width = $("#avatar_original img").attr("width");
+ var img_height = $("#avatar_original img").attr("height");
- $('#photo_preview img').css({
+ $('#avatar_preview img').css({
width: Math.round(rx *img_width) + 'px',
height: Math.round(ry * img_height) + 'px',
marginLeft: '-' + Math.round(rx * coords.x) + 'px',
@@ -27,14 +27,14 @@
};
function updateCoords(c) {
- $('#photo_crop_x').val(c.x);
- $('#photo_crop_y').val(c.y);
- $('#photo_crop_w').val(c.w);
- $('#photo_crop_h').val(c.h);
+ $('#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($('#photo_crop_w').val())) return true;
+ if (parseInt($('#avatar_crop_w').val())) return true;
alert('Please select a crop region then press submit.');
return false;
};
diff --git a/js/jquery.Jcrop.pack.js b/js/jcrop/jquery.Jcrop.pack.js
index aa82e8abe..aa82e8abe 100644
--- a/js/jquery.Jcrop.pack.js
+++ b/js/jcrop/jquery.Jcrop.pack.js