Skip to content

Commit

Permalink
Fix Localstorage#[]= to return value
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Feb 5, 2014
1 parent eab45e2 commit ce26192
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion opal/opal-jquery/local_storage.rb
Expand Up @@ -5,7 +5,10 @@ def initialize(storage)
end

def []=(key, value)
`#@storage.setItem(key, value)`
%x{
#@storage.setItem(key, value);
return value;
}
end

def [](key)
Expand Down

0 comments on commit ce26192

Please sign in to comment.