##// END OF EJS Templates
Backport PR #5459: Fix interact animation page jump FF...
Backport PR #5459: Fix interact animation page jump FF Firefox doesn't render images immediately as the data is available. When animating the way that we animate, this causes the output area to collapse quickly before returning to its original size. When the output area collapses, FireFox scrolls upwards in attempt to compensate for the lost vertical content (so it looks like you are on the same spot in the page, with respect to the contents below the image's prior location). The solution is to resize the image output after the `img onload` event has fired. This PR: - Releases the `clear_output` height lock after the image has been loaded (instead of immediately or using a timeout). - Removes a `setTimeout` call in the `append_output` method. - `clear_output` in zmqshell no longer sends `\r` to the stream outputs. closes #5128

File last commit:

r15235:3cc52259
r16229:ff1462d3
Show More
dashboard_nav.js
40 lines | 1.3 KiB | application/javascript | JavascriptLexer
Brian E. Granger
Fixing casperjs tests to run on casperjs 1.0.x.
r15081
Brian E. Granger
Adding dashboard navigation tests for dir browsing.
r15080
casper.get_list_items = function () {
return this.evaluate(function () {
return $.makeArray($('.item_link').map(function () {
return {
link: $(this).attr('href'),
label: $(this).find('.item_name').text()
}
}));
});
}
Brian E. Granger
Fixing casperjs tests to run on casperjs 1.0.x.
r15081 casper.test_items = function (baseUrl) {
Brian E. Granger
Adding dashboard navigation tests for dir browsing.
r15080 casper.then(function () {
var items = casper.get_list_items();
casper.each(items, function (self, item) {
if (!item.label.match('.ipynb$')) {
var followed_url = baseUrl+item.link;
if (!followed_url.match('/\.\.$')) {
MinRK
test unicode path in dashboard_nav
r15235 casper.thenOpen(followed_url, function () {
Brian E. Granger
Fixing casperjs tests to run on casperjs 1.0.x.
r15081 casper.wait_for_dashboard();
MinRK
test unicode path in dashboard_nav
r15235 // getCurrentUrl is with host, and url-decoded,
// but item.link is without host, and url-encoded
var expected = baseUrl + decodeURIComponent(item.link);
this.test.assertEquals(this.getCurrentUrl(), expected, 'Testing dashboard link: ' + expected);
Brian E. Granger
Fixing casperjs tests to run on casperjs 1.0.x.
r15081 casper.test_items(baseUrl);
Brian E. Granger
Adding dashboard navigation tests for dir browsing.
r15080 this.back();
});
}
}
});
});
}
Brian E. Granger
Fixing casperjs tests to run on casperjs 1.0.x.
r15081 casper.dashboard_test(function () {
MinRK
test unicode path in dashboard_nav
r15235 baseUrl = this.get_notebook_server();
Brian E. Granger
Fixing casperjs tests to run on casperjs 1.0.x.
r15081 casper.test_items(baseUrl);
})