contextmenu.html revision 68b1d15dad8af70374cec83a13758dce5621de1d
7af920b5469a3ebc416dace31e18e2d1abfea057Todd Kloots <meta http-equiv="X-UA-Compatible" content="IE=edge">
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots .contextmenu {
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots background: #ccc;
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots list-style-type: none;
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots .contextmenu li {
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots white-space: nowrap;
7af920b5469a3ebc416dace31e18e2d1abfea057Todd Kloots <script type="text/javascript" src="/build/yui/yui.js"></script>
7af920b5469a3ebc416dace31e18e2d1abfea057Todd Kloots filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
7af920b5469a3ebc416dace31e18e2d1abfea057Todd Kloots allowRollup: false,
7af920b5469a3ebc416dace31e18e2d1abfea057Todd Kloots lazyEventFacade: true
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots }).use("event-contextmenu", "node-event-delegate", "overlay", function (Y) {
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots var btn = Y.one("#btn-1"),
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots btn2 = Y.one("#btn-2"),
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots contextmenu;
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots function onContextmenu(e) {
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots if (!contextmenu) {
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots contextmenu = new Y.Overlay({
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots bodyContent: "<ul class=\"contextmenu\"><li>Option 1</li><li>Option 2</li><li>Option 3</li></ul>",
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots visible: false,
68b1d15dad8af70374cec83a13758dce5621de1dTodd Kloots constrain: true
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots btn.on("contextmenu", onContextmenu);
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots btn2.on("contextmenu", onContextmenu);
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.one("doc").delegate("contextmenu", function (e) {
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.log("First delegate() listener called");
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.one("doc").delegate("contextmenu", function (e) {
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.log("Second delegate() listener called");
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots btn.on("contextmenu", function (e) {
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.log("First on() listener called");
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots btn.on("contextmenu", function (e) {
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.log("Second on() listener called");
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots btn.on("contextmenu", function (e) {
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots Y.log("Third on() listener called");
259d076b01f41c9f1846783430d4db658226dab1Todd Kloots <button type="button" id="btn-2">Click Me</button>