File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
Original file line number Diff line number Diff line change @@ -4,6 +4,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ 1.10.0] - 2016-05-19
8
+ ### Fixed
9
+ Version 1.9.13 fixed an issue in offline mode where if you ran ` init_notebook_mode `
10
+ more than once the function would skip importing (because it saw that it had
11
+ already imported the library) but then accidentally clear plotly.js from the DOM.
12
+ This meant that if you ran ` init_notebook_mode ` more than once, your graphs would
13
+ not appear when you refreshed the page.
14
+ Version 1.9.13 solved this issue by injecting plotly.js with every iplot call.
15
+ While this works, it also injects the library excessively, causing notebooks
16
+ to have multiple versions of plotly.js inline in the DOM, potentially making
17
+ notebooks with many ` iplot ` calls very large.
18
+ Version 1.10.0 brings back the requirement to call ` init_notebook_mode ` before
19
+ making an ` iplot ` call. It makes ` init_notebook_mode ` idempotent: you can call
20
+ it multiple times without worrying about losing your plots on refresh.
21
+
22
+
23
+ ## [ 1.9.13] - 2016-05-19
24
+ ### Fixed
25
+ - Fixed issue in offline mode related to the inability to reload plotly.js on page refresh and extra init_notebook_mode calls.
26
+
7
27
## [ 1.9.12] - 2016-05-16
8
28
### Added
9
29
SSL support for streaming.
You can’t perform that action at this time.
0 commit comments