diff --git a/src/atom/browser.coffee b/src/atom/browser.coffee index 5a8a3c593..a6ec7ba01 100644 --- a/src/atom/browser.coffee +++ b/src/atom/browser.coffee @@ -8,17 +8,14 @@ class Browser extends Resource url: null - html: $ "
" - - iframe: -> - $ "" - open: (url) -> return false if not /^https?:/.test url @url = url - @html.html @iframe().bind 'load', (e) => - window.setTitle e.target.contentWindow.document.title + + @html = """ + + """ @show()