예제 #1
0
파일: ko.go 프로젝트: theclapp/js
func (t *TemplateNodes) Item(idx int) *dom.Element {
	return dom.WrapElement(t.Index(idx))
}
예제 #2
0
파일: canvas.go 프로젝트: theclapp/js
// New creates a Canvas instance
// el is the html element
func New(el *js.Object) *Canvas {
	return &Canvas{dom.WrapElement(el)}
}