This repository has been archived by the owner on Oct 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Panel: Allow click that opens panel to bubble
- Loading branch information
Gabriel Schulhof
committed
Apr 11, 2014
1 parent
fa2ccd1
commit ab9ab7e
Showing
3 changed files
with
74 additions
and
9 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<title>jQuery Mobile Panel Test Suite</title> | ||
|
||
<script src="../../../external/requirejs/require.js"></script> | ||
<script src="../../../js/requirejs.config.js"></script> | ||
<script src="../../../js/jquery.tag.inserter.js"></script> | ||
<script src="../../jquery.setNameSpace.js"></script> | ||
<script src="../../../tests/jquery.testHelper.js"></script> | ||
|
||
<link rel="stylesheet" href="../../../css/themes/default/jquery.mobile.css"/> | ||
<link rel="stylesheet" href="../../../external/qunit/qunit.css"/> | ||
<link rel="stylesheet" href="../../jqm-tests.css"/> | ||
<script src="../../../external/qunit/qunit.js"></script> | ||
<script> | ||
$.testHelper.asyncLoad([ | ||
[ | ||
"widgets/panel", | ||
"widgets/page" | ||
], | ||
[ "init" ], | ||
[ | ||
"open_click_bubbling_core.js" | ||
] | ||
]); | ||
</script> | ||
|
||
<script src="../../swarminject.js"></script> | ||
</head> | ||
<body class="ui-body-b"> | ||
<div id="qunit"></div> | ||
|
||
<div data-nstest-role="page"> | ||
<div data-nstest-role="panel" id="open-click-bubbling-panel"> | ||
<p>The panel</p> | ||
</div> | ||
<a href="#open-click-bubbling-panel" id="open-click-bubbling-link">Open panel</a> | ||
</div> | ||
|
||
</body> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
asyncTest( "Click on link that opens panel may bubble and does not cause navigation", function() { | ||
var origHref = location.href, | ||
eventNs = ".clickOnLinkThatOpensPanelMayBubble", | ||
panel = $( "#open-click-bubbling-panel" ), | ||
link = $( "#open-click-bubbling-link" ); | ||
|
||
$.testHelper.detailedEventCascade([ | ||
function() { | ||
link.click(); | ||
}, | ||
{ | ||
panelopen: { src: panel, event: "panelopen" + eventNs + "1" }, | ||
click: { src: $( document ), event: "click" + eventNs + "1" } | ||
}, | ||
function( result ) { | ||
deepEqual( result.panelopen.timedOut, false, "panelopen event occurred" ); | ||
deepEqual( result.click.timedOut, false, "click propagated to document" ); | ||
}, | ||
{ | ||
timeout: { length: 500 } | ||
}, | ||
function() { | ||
deepEqual( location.href, origHref, "opening the panel leaves location.href alone" ); | ||
panel.panel( "close" ); | ||
}, | ||
{ | ||
panelclose: { src: panel, event: "panelclose" + eventNs + "2" } | ||
}, | ||
start | ||
]); | ||
}); |