starting interpreter and getting ticks going (slowly)

This commit is contained in:
Torsten Ruger
2015-08-22 01:59:29 +02:00
parent 3fa685a0bb
commit ed2a054ca6
4 changed files with 10 additions and 9 deletions

View File

@ -42,7 +42,6 @@ class ElementView
#wrap the given node with the wappper, so for a div wrapper and a button node
# the result will be <div> <button>hwatever was in there</button> <div>
def wrap_node_with node , wrapper
puts "wraps parent #{node.parent}"
node.replace_with(wrapper) if node.parent
wrapper << node
end