Added licensing information for jcrop.go and farbtastic.go scripts

This commit is contained in:
Sarven Capadisli 2009-05-20 23:37:20 +00:00
parent 6fb36edea3
commit b23d423081
2 changed files with 51 additions and 34 deletions

View File

@ -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();

View File

@ -1,4 +1,13 @@
$(function(){ /** Init for Jcrop 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/
*/
$(function(){
var x = ($('#avatar_crop_x').val()) ? $('#avatar_crop_x').val() : 0; var x = ($('#avatar_crop_x').val()) ? $('#avatar_crop_x').val() : 0;
var y = ($('#avatar_crop_y').val()) ? $('#avatar_crop_y').val() : 0; var y = ($('#avatar_crop_y').val()) ? $('#avatar_crop_y').val() : 0;
var w = ($('#avatar_crop_w').val()) ? $('#avatar_crop_w').val() : $("#avatar_original img").attr("width"); var w = ($('#avatar_crop_w').val()) ? $('#avatar_crop_w').val() : $("#avatar_original img").attr("width");
@ -14,9 +23,9 @@
bgColor: '#000', bgColor: '#000',
bgOpacity: .4 bgOpacity: .4
}); });
}); });
function showPreview(coords) { function showPreview(coords) {
var rx = 96 / coords.w; var rx = 96 / coords.w;
var ry = 96 / coords.h; var ry = 96 / coords.h;
@ -29,11 +38,11 @@
marginLeft: '-' + Math.round(rx * coords.x) + 'px', marginLeft: '-' + Math.round(rx * coords.x) + 'px',
marginTop: '-' + Math.round(ry * coords.y) + 'px' marginTop: '-' + Math.round(ry * coords.y) + 'px'
}); });
}; };
function updateCoords(c) { function updateCoords(c) {
$('#avatar_crop_x').val(c.x); $('#avatar_crop_x').val(c.x);
$('#avatar_crop_y').val(c.y); $('#avatar_crop_y').val(c.y);
$('#avatar_crop_w').val(c.w); $('#avatar_crop_w').val(c.w);
$('#avatar_crop_h').val(c.h); $('#avatar_crop_h').val(c.h);
}; };