Added licensing information for jcrop.go and farbtastic.go scripts
This commit is contained in:
parent
6fb36edea3
commit
b23d423081
|
@ -1,3 +1,11 @@
|
||||||
|
/** Init for Farbtastic library and page setup
|
||||||
|
*
|
||||||
|
* @package Laconica
|
||||||
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
||||||
|
* @copyright 2009 Control Yourself, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||||
|
* @link http://laconi.ca/
|
||||||
|
*/
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
function UpdateColors(S) {
|
function UpdateColors(S) {
|
||||||
C = $(S).val();
|
C = $(S).val();
|
||||||
|
|
|
@ -1,39 +1,48 @@
|
||||||
$(function(){
|
/** Init for Jcrop library and page setup
|
||||||
var x = ($('#avatar_crop_x').val()) ? $('#avatar_crop_x').val() : 0;
|
*
|
||||||
var y = ($('#avatar_crop_y').val()) ? $('#avatar_crop_y').val() : 0;
|
* @package Laconica
|
||||||
var w = ($('#avatar_crop_w').val()) ? $('#avatar_crop_w').val() : $("#avatar_original img").attr("width");
|
* @author Sarven Capadisli <csarven@controlyourself.ca>
|
||||||
var h = ($('#avatar_crop_h').val()) ? $('#avatar_crop_h').val() : $("#avatar_original img").attr("height");
|
* @copyright 2009 Control Yourself, Inc.
|
||||||
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||||
|
* @link http://laconi.ca/
|
||||||
|
*/
|
||||||
|
|
||||||
jQuery("#avatar_original img").Jcrop({
|
$(function(){
|
||||||
onChange: showPreview,
|
var x = ($('#avatar_crop_x').val()) ? $('#avatar_crop_x').val() : 0;
|
||||||
setSelect: [ x, y, w, h ],
|
var y = ($('#avatar_crop_y').val()) ? $('#avatar_crop_y').val() : 0;
|
||||||
onSelect: updateCoords,
|
var w = ($('#avatar_crop_w').val()) ? $('#avatar_crop_w').val() : $("#avatar_original img").attr("width");
|
||||||
aspectRatio: 1,
|
var h = ($('#avatar_crop_h').val()) ? $('#avatar_crop_h').val() : $("#avatar_original img").attr("height");
|
||||||
boxWidth: 480,
|
|
||||||
boxHeight: 480,
|
|
||||||
bgColor: '#000',
|
|
||||||
bgOpacity: .4
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
function showPreview(coords) {
|
jQuery("#avatar_original img").Jcrop({
|
||||||
var rx = 96 / coords.w;
|
onChange: showPreview,
|
||||||
var ry = 96 / coords.h;
|
setSelect: [ x, y, w, h ],
|
||||||
|
onSelect: updateCoords,
|
||||||
|
aspectRatio: 1,
|
||||||
|
boxWidth: 480,
|
||||||
|
boxHeight: 480,
|
||||||
|
bgColor: '#000',
|
||||||
|
bgOpacity: .4
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
var img_width = $("#avatar_original img").attr("width");
|
function showPreview(coords) {
|
||||||
var img_height = $("#avatar_original img").attr("height");
|
var rx = 96 / coords.w;
|
||||||
|
var ry = 96 / coords.h;
|
||||||
|
|
||||||
$('#avatar_preview img').css({
|
var img_width = $("#avatar_original img").attr("width");
|
||||||
width: Math.round(rx *img_width) + 'px',
|
var img_height = $("#avatar_original img").attr("height");
|
||||||
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_preview img').css({
|
||||||
$('#avatar_crop_x').val(c.x);
|
width: Math.round(rx *img_width) + 'px',
|
||||||
$('#avatar_crop_y').val(c.y);
|
height: Math.round(ry * img_height) + 'px',
|
||||||
$('#avatar_crop_w').val(c.w);
|
marginLeft: '-' + Math.round(rx * coords.x) + 'px',
|
||||||
$('#avatar_crop_h').val(c.h);
|
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);
|
||||||
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user