From c6a9fee0956e7194e185c151210ff4a312bffbad 2014-06-15 17:37:30
From: Jonathan Frederic <jdfreder@calpoly.edu>
Date: 2014-06-15 17:37:30
Subject: [PATCH] Merge pull request #5993 from payne92/master

Fix docs to reflect that container.show() no longer needed #5988
---

diff --git a/IPython/core/display.py b/IPython/core/display.py
index e99a4fa..61713cf 100644
--- a/IPython/core/display.py
+++ b/IPython/core/display.py
@@ -500,9 +500,8 @@ class Javascript(TextDisplayObject):
         downloaded and then displayed.
 
         In the Notebook, the containing element will be available as `element`,
-        and jQuery will be available.  The output area starts hidden, so if
-        the js appends content to `element` that should be visible, then
-        it must call `container.show()` to unhide the area.
+        and jQuery will be available.  Content appended to `element` will be
+        visible in the output area. 
 
         Parameters
         ----------