By | Chris Done |
At | 2011-06-13 |
Title | Remove OverloadedStrings use in hjscript. |
Description |
Edit file src/Amelie/View/Script.hs 33188 → 33188
63 63 -- | Toggle paste details.
64 64 togglePaste :: HJScript ()
65 65 togglePaste = do
66 66 each (do btn <- varWith (j "<a href=\"\">Expand</a>")
67 67 this <- varWith this'
- 68 prepend (" - " :: Exp String) this
+ 68 prepend (string " - ") this
69 69 prepend (val btn) this
70 70 details <- varWith (siblings ".amelie-paste-specs" this)
71 71 display btn "none" details
72 72 toggle (display btn "block" details)
73 73 (display btn "none" details)
… … … …