##// END OF EJS Templates
added author to main page tooltip
marcink -
r1458:9d9e491e beta
parent child Browse files
Show More
@@ -42,7 +42,7 b' String.prototype.format = function() {'
42 42 // Replace the prototype property
43 43 return format;
44 44
45 }();
45 }();
46 46
47 47 /**
48 48 * GLOBAL YUI Shortcuts
@@ -113,7 +113,7 b' function ypjax(url,container,s_call,f_ca'
113 113 /**
114 114 * tooltip activate
115 115 */
116 function tooltip_activate(){
116 var tooltip_activate = function(){
117 117 function toolTipsId(){
118 118 var ids = [];
119 119 var tts = YUQ('.tooltip');
@@ -140,7 +140,7 b' function tooltip_activate(){'
140 140 /**
141 141 * show more
142 142 */
143 function show_more_event(){
143 var show_more_event = function(){
144 144 YUE.on(YUD.getElementsByClassName('show_more'),'click',function(e){
145 145 var el = e.target;
146 146 YUD.setStyle(YUD.get(el.id.substring(1)),'display','');
@@ -150,7 +150,7 b''
150 150 ${h.link_to('r%s:%s' % (repo['rev'],h.short_id(repo['tip'])),
151 151 h.url('changeset_home',repo_name=repo['name'],revision=repo['tip']),
152 152 class_="tooltip",
153 title=h.tooltip(repo['last_msg']))}
153 title=h.tooltip('%s\n%s' % (repo['author'],repo['last_msg'])))}
154 154 %else:
155 155 ${_('No changesets yet')}
156 156 %endif
General Comments 0
You need to be logged in to leave comments. Login now