Skip to content

Instantly share code, notes, and snippets.

@willhoney7
Created June 26, 2012 18:52
Show Gist options
  • Save willhoney7/2997961 to your computer and use it in GitHub Desktop.
Save willhoney7/2997961 to your computer and use it in GitHub Desktop.
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