diff --git a/rhodecode/templates/files/files.html b/rhodecode/templates/files/files.html --- a/rhodecode/templates/files/files.html +++ b/rhodecode/templates/files/files.html @@ -101,7 +101,9 @@ var callbacks = function(State){ 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 --git a/rhodecode/templates/files/files_source.html b/rhodecode/templates/files/files_source.html --- a/rhodecode/templates/files/files_source.html +++ b/rhodecode/templates/files/files_source.html @@ -103,7 +103,9 @@ YUE.onDOMReady(function(){ //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(); + }) }); });