Commit f2ce1386 authored by Greg Colvin's avatar Greg Colvin Committed by GitHub

Merge pull request #376 from ethereum/editor-size-bugfix

Update last reference to storage.editorSize
parents 8f74793b f7008bd6
......@@ -429,7 +429,7 @@ var run = function () {
var hidingRHP = false
$('.toggleRHP').click(function () {
hidingRHP = !hidingRHP
setEditorSize(hidingRHP ? 0 : storage.getEditorSize())
setEditorSize(hidingRHP ? 0 : storage.get(EDITOR_SIZE_KEY))
$('.toggleRHP i').toggleClass('fa-angle-double-right', !hidingRHP)
$('.toggleRHP i').toggleClass('fa-angle-double-left', hidingRHP)
})
......
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