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,3 +1,12 @@
/** 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(){ $(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;