##// 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:

r16131:04c05847
r16229:ff1462d3
Show More
Index.ipynb
85 lines | 2.3 KiB | text/plain | TextLexer
No description has been provided for this image

Back to the main Index

Notebook

The IPython Notebook is a web-based interactive computing system that enables users to author documents that include live code, narrative text, LaTeX equations, HTML, images and video. These documents are contain a full record of a computation and its results and can be shared on email, Dropbox, version control systems (like git/GitHub) or nbviewer.ipython.org.

Tutorials

  • [User Interface](User Interface.ipynb)
  • [Running Code](Running Code.ipynb)
  • [Basic Output](Basic Output.ipynb)
  • [Plotting with Matplotlib](Plotting with Matplotlib.ipynb)
  • [Markdown Cells](Markdown Cells.ipynb)
  • [Typesetting Math Using MathJax](Typesetting Math Using MathJax.ipynb)
  • [Display System](Display System.ipynb)
  • [Custom Display Logic](Custom Display Logic.ipynb)

Examples

  • [Trapezoid Rule](Trapezoid Rule.ipynb)
  • SymPy
  • [Raw Input](Raw Input.ipynb)
  • [Importing Notebooks](Importing Notebooks.ipynb)
  • [Connecting with the Qt Console](Connecting with the Qt Console.ipynb)
  • [Animations Using clear_output](Animations Using clear_output.ipynb)