# HG changeset patch # User Marcin Kuzminski # Date 1352847134 -3600 # Node ID adf8ee7b8f2a697c1928f8fb6c1117e848ec2d03 # Parent dec78aee1d533db78ab1d08aa40419ad2a0edff6 fire tooltips after loading the history diff -r dec78aee1d53 -r adf8ee7b8f2a rhodecode/templates/files/files.html --- a/rhodecode/templates/files/files.html Tue Nov 13 23:49:04 2012 +0100 +++ b/rhodecode/templates/files/files.html Tue Nov 13 23:52:14 2012 +0100 @@ -101,7 +101,9 @@ YUE.removeListener('load_node_history', 'click'); YUE.on('load_node_history', 'click', function(e){ var _url = node_history_url.replace('__REV__',State.data.rev).replace('__FPATH__', State.data.f_path); - ypjax(_url, 'node_history', function(o){}) + ypjax(_url, 'node_history', function(o){ + tooltip_activate(); + }) }); } // Inform Google Analytics of the change diff -r dec78aee1d53 -r adf8ee7b8f2a rhodecode/templates/files/files_source.html --- a/rhodecode/templates/files/files_source.html Tue Nov 13 23:49:04 2012 +0100 +++ b/rhodecode/templates/files/files_source.html Tue Nov 13 23:52:14 2012 +0100 @@ -103,7 +103,9 @@ //load history of file YUE.on('load_node_history', 'click', function(e){ var _url = node_history_url.replace('__REV__','${c.file_changeset.raw_id}').replace('__FPATH__', '${c.f_path}'); - ypjax(_url, 'node_history', function(o){}) + ypjax(_url, 'node_history', function(o){ + tooltip_activate(); + }) }); });