Sha256: 8f4998be30017c2b45bcf14cce4cd04ccc7fb9576da6144e73507a3a29b7d8b5
Contents?: true
Size: 1.4 KB
Versions: 1
Compression:
Stored size: 1.4 KB
Contents
require 'glimmer/opal/element_proxy' module Glimmer module Opal class DocumentProxy < ElementProxy # TODO consider renaming to ShellProxy to match SWT API def initialize(args) @args = args @children = [] $document.ready do $document.head.replace(head_dom) $document.body.replace(dom) end end def text $document.title end def text=(value) $document.ready do $document.title = value end end def head_dom # TODO make grid-layout support grab excess space false @head_dom ||= DOM { head { <<~CSS <style> ul { list-style: none; padding: 0; } li { cursor: default; padding-left: 10px; padding-right: 10px; } li.selected-list-item { background: rgb(80, 116, 211); color: white; } li.empty-list-item { color: transparent; } </style> CSS } } end def dom @dom ||= DOM { body { } } end def open # No Op (just a placeholder since it is not needed on the web) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
glimmer-dsl-opal-0.0.4 | lib/glimmer/opal/document_proxy.rb |