comparison rhodecode/templates/base/base.html @ 905:1294f2baf2bc beta

added wrapping of long tooltips in index page
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 01 Jan 2011 22:43:37 +0100
parents 042d38683d42
children 415321076046
comparison
equal deleted inserted replaced
904:82aaf4e71817 905:1294f2baf2bc
351 } 351 }
352 } 352 }
353 353
354 function toggleFollowingUser(fallows_user_id,token){ 354 function toggleFollowingUser(fallows_user_id,token){
355 args = 'follows_user_id='+fallows_user_id; 355 args = 'follows_user_id='+fallows_user_id;
356 args+= '&auth_token='+token; 356 args+= '&amp;auth_token='+token;
357 YUC.asyncRequest('POST',base_url,{ 357 YUC.asyncRequest('POST',base_url,{
358 success:function(o){ 358 success:function(o){
359 onSuccess(); 359 onSuccess();
360 } 360 }
361 },args); return false; 361 },args); return false;
362 } 362 }
363 363
364 function toggleFollowingRepo(fallows_repo_id,token){ 364 function toggleFollowingRepo(fallows_repo_id,token){
365 args = 'follows_repo_id='+fallows_repo_id; 365 args = 'follows_repo_id='+fallows_repo_id;
366 args+= '&auth_token='+token; 366 args+= '&amp;auth_token='+token;
367 YUC.asyncRequest('POST',base_url,{ 367 YUC.asyncRequest('POST',base_url,{
368 success:function(o){ 368 success:function(o){
369 onSuccess(); 369 onSuccess();
370 } 370 }
371 },args); return false; 371 },args); return false;