Merge pull request #6673 from jhamrick/fix-tooltip

Fix broken show in pager button
This commit is contained in:
Jonathan Frederic 2014-10-10 08:31:25 -07:00
commit 262bf7d2c9

View File

@ -118,10 +118,7 @@ define([
Tooltip.prototype.showInPager = function (cell) {
// reexecute last call in pager by appending ? to show back in pager
var that = this;
var payload = {};
payload.text = that._reply.content.data['text/plain'];
this.events.trigger('open_with_text.Pager', payload);
this.events.trigger('open_with_text.Pager', that._reply.content);
this.remove_and_cancel_tooltip();
};