UNPKG
oboe.js-demo
Version:
latest (0.0.0-236)
0.0.0-236
0.0.0-234
A website for Oboe.js
github.com/jimhigson/oboe.js-website
jimhigson/oboe.js-website
oboe.js-demo
/
statics
/
js
/
demo
/
view
/
ServerView.js
10 lines
(6 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
ServerView = extend(ThingView, function(subject, demoView){ ThingView.apply(
this
,arguments);
this
.initDomFromTemplate(
'places'
,
'server'
, subject.name);
this
.moveTo( subject.locations.
where
);
this
.writeLabel(); });