Created
June 26, 2012 18:52
-
-
Save willhoney7/2997961 to your computer and use it in GitHub Desktop.
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: "custom.SwipeableItem", | |
kind: "onyx.SwipeableItem", | |
components: [ | |
{name: "client", kind: "Slideable", min: -100, unit: "%", ondragstart: "clientDragStart"}, | |
{name: "confirm", kind: "onyx.Toolbar", canGenerate: false, classes: "onyx-swipeable-item-confirm enyo-fit", style: "text-align: center;", ontap: "confirmTap", components: [ | |
{kind: "onyx.Button", content: "Delete", ontap: "deleteTap"}, | |
{kind: "onyx.Button", content: "Cancel", ontap: "cancelTap"}, | |
{kind: "onyx.Button", content: "HEY!", ontap: "lalala"} | |
]} | |
] | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment