diff --git a/elements/urth-core-behaviors/execution-complete-behavior.html b/elements/urth-core-behaviors/execution-complete-behavior.html index a3fb028a..e060fedc 100644 --- a/elements/urth-core-behaviors/execution-complete-behavior.html +++ b/elements/urth-core-behaviors/execution-complete-behavior.html @@ -16,7 +16,7 @@ console.debug("Registering _onExecutionComplete for Execute Reply messages."); this.__replyCallback = this._onExecutionComplete.bind(this); - IPython.notebook.kernel.widget_manager.notebook.events.on( + IPython.notebook.events.on( 'shell_reply.Kernel', this.__replyCallback ); }, @@ -24,7 +24,7 @@ detached: function() { console.debug("Unregistering _onExecutionComplete for Execute Reply messages."); if (this.__replyCallback){ - IPython.notebook.kernel.widget_manager.notebook.events.off( + IPython.notebook.events.off( 'shell_reply.Kernel', this.__replyCallback ); } diff --git a/etc/examples/standalone/index.html b/etc/examples/standalone/index.html index f6dc1e0e..95e794fd 100644 --- a/etc/examples/standalone/index.html +++ b/etc/examples/standalone/index.html @@ -40,6 +40,10 @@
+ +