This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git
The following commit(s) were added to refs/heads/master by this push:
new 5d3d5bf Tidy
5d3d5bf is described below
commit 5d3d5bfaa89524fabbaf044ab2bd8947c741873c
Author: Sebb <[email protected]>
AuthorDate: Tue Nov 24 22:05:08 2020 +0000
Tidy
---
www/board/agenda/spec/vue_server.rb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/www/board/agenda/spec/vue_server.rb
b/www/board/agenda/spec/vue_server.rb
index 6eeb044..2402354 100644
--- a/www/board/agenda/spec/vue_server.rb
+++ b/www/board/agenda/spec/vue_server.rb
@@ -97,7 +97,7 @@ class VueServer
def Vue.renderElement(component)
outer = document.createElement('div')
inner = document.createElement('span')
- outer.appendChild(inner);
+ outer.appendChild(inner)
Vue.new(el: inner, render: proc {|h| return h(component)})
return outer.firstChild
end
@@ -107,7 +107,7 @@ class VueServer
def Vue.renderApp(component)
outer = document.createElement('div')
inner = document.createElement('span')
- outer.appendChild(inner);
+ outer.appendChild(inner)
app = Vue.new(el: inner, render: proc {|h| return h(component)})
inner = outer.firstChild # appears not to be used, but it is
@@ -141,7 +141,7 @@ class VueServer
begin
eval(data)
rescue => error
- response.end(error.toString());
+ response.end(error.toString())
end
end
end