Helper method to retrieve task configuration from localStorage
763 764 765 766
# File 'lib/atome/extensions/atome.rb', line 763 def retrieve_task(name) config = JS.global[:localStorage].getItem(name) config.nil? ? nil : JSON.parse(config) end