not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
650 B

  1. /**
  2. A control styled to indicate that an object can be grabbed and moved. It
  3. should only be used in this limited context--to indicate that dragging the
  4. object will result in movement.
  5. {kind: "onyx.Toolbar", components: [
  6. {kind: "onyx.Grabber", ondragstart: "grabberDragstart",
  7. ondrag: "grabberDrag", ondragfinish: "grabberDragFinish"},
  8. {kind: "onyx.Button", content: "More stuff"}
  9. ]}
  10. When using a Grabber inside a Fittable control, be sure to set "noStretch: true"
  11. on the Fittable or else give it an explicit height. Otherwise, the Grabber
  12. may not be visible.
  13. */
  14. enyo.kind({
  15. name: "onyx.Grabber",
  16. classes: "onyx-grabber"
  17. });