JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
no scrollbars on @iframe (even when overflow-x)
authorJason Woofenden <jason@jasonwoof.com>
Tue, 15 Mar 2016 18:19:24 +0000 (14:19 -0400)
committerJason Woofenden <jason@jasonwoof.com>
Tue, 15 Mar 2016 18:19:24 +0000 (14:19 -0400)
editor.coffee

index b3fb372..cda74ef 100644 (file)
@@ -686,6 +686,7 @@ class PeachHTML5Editor
                if @options.css_file
                        # TODO test this
                        @idoc.head.appendChild domify @idoc, link: rel: 'stylesheet', type: 'text/css', href: @options.css_file
+               @idoc.head.appendChild domify @idoc, style: children: [domify @idoc, text: "body { overflow: hidden; }"]
                @load_html @in_el.value
                @inited = true
                if @options.on_init?