Load the data at location uri into the editor as a JSON document.
# File ext/json/lib/json/editor.rb, line 1264
def load_location(uri)
data = read_data(uri) or return
@filename = nil
toplevel.display_status("Loaded data from '#{uri}'.")
display_title
data
end