Commit e193ee47 authored by Andrew Gibiansky's avatar Andrew Gibiansky

First widget is done displaying!

parent 9de53030
This diff is collapsed.
......@@ -18,6 +18,9 @@ $([IPython.events]).on('app_initialized.NotebookApp', function(){
// Set tooltips to be triggered after 800ms
IPython.tooltip.time_before_tooltip = 800;
// IPython keycodes.
IPython.keyboard.keycodes.down = 32; // space
CodeMirror.requireMode('haskell', function(){
// Create a multiplexing mode that uses Haskell highlighting by default but
......
This diff is collapsed.
......@@ -42,7 +42,7 @@ data WhichIPython
-- | Which commit of IPython we are on.
ipythonCommit :: Text
ipythonCommit = "4a08574f74201ef7ca39a4e80d19a2d158ab6950"
ipythonCommit = "9c1c7a7e32118942a06eb39909c942e628090c14"
-- | The IPython profile name.
ipythonProfile :: String
......
......@@ -115,6 +115,7 @@ instance IHaskellDisplay Widget where
instance IHaskellWidget Widget where
targetName (Widget widget) = targetName widget
open (Widget widget) = open widget
comm (Widget widget) = comm widget
close (Widget widget) = close widget
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment