This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.todo-list { | |
width:50%; | |
background:#fff; | |
} | |
.todo-list .task-row { | |
height:40px; | |
background:#ccf; | |
border-bottom:1px solid #eef; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enyo.kind({ | |
name:"ex.App", | |
kind:"Control", | |
components:[ | |
{kind:"cubiq.iScroll", components:[ | |
{kind:"VirtualRepeater", onSetupRow:"setupRow", components:[ | |
{name:"row", onclick:"rowClicked"}, | |
{kind:"Button", onclick:"buttonClicked"}, | |
{kind:"Slider", min:0, max:20} | |
]}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _Example = { | |
name:"com.technisode.example.App", | |
kind:"Control", | |
published:{ | |
a:1, | |
b:2, | |
c:3 | |
}, | |
components:[ | |
{kind:"IntegerPicker", name:"aPicker", label:"A"}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var _Example = { | |
name:"com.technisode.example.App", | |
kind:"Control", | |
components:[ | |
{kind:"Button", caption:"click me", onclick:"clicked"}, | |
{kind:"toaster.addtsk", name:"addtsk"} | |
], | |
clicked:function() { | |
this.$.addtsk.openAtCenter(); | |
} |
NewerOlder