Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
move navigate events under events directory
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbender committed Dec 18, 2012
1 parent 77b8304 commit 7e103f9
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 16 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion js/index.php
Expand Up @@ -20,7 +20,7 @@
'widgets/page.js',
'jquery.mobile.core.js',
'widgets/loader.js',
'navigation/event.js',
'events/navigate.js',
'navigation/path.js',
'navigation/history.js',
'navigation/navigator.js',
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.mobile.init.js
Expand Up @@ -8,7 +8,7 @@ define([
"jquery",
"./jquery.mobile.core",
"./jquery.mobile.support",
'./navigation/event',
'./events/navigate',
'./navigation/path',
'./navigation/method',
"./jquery.mobile.navigation",
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.mobile.js
Expand Up @@ -4,7 +4,7 @@
define([
'require',
'./widgets/loader',
'./navigation/event',
'./events/navigate',
'./navigation/path',
'./navigation/history',
'./navigation/navigator',
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.mobile.navigation.js
Expand Up @@ -7,7 +7,7 @@ define( [
"jquery",
"./jquery.mobile.core",
"./navigation/path",
"./navigation/event",
"./events/navigate",
"./navigation/history",
"./navigation/navigator",
"./navigation/method",
Expand Down
2 changes: 1 addition & 1 deletion js/navigation/navigator.js
Expand Up @@ -2,7 +2,7 @@
//>>description: Navigation Manager
//>>label: AJAX Navigation System
//>>group: Navigation
define([ "jquery", "./event", "./path", "./history" ], function( $ ) {
define([ "jquery", "../events/navigate", "./path", "./history" ], function( $ ) {
//>>excludeEnd("jqmBuildExclude");
(function( $, undefined ) {
var path = $.mobile.path;
Expand Down
2 changes: 1 addition & 1 deletion js/widgets/popup.js
Expand Up @@ -15,7 +15,7 @@ define( [
"jquery",
"../jquery.mobile.widget",
"../jquery.mobile.support",
"../navigation/event",
"../events/navigate",
"../navigation/path",
"../navigation/history",
"../navigation/navigator",
Expand Down
1 change: 0 additions & 1 deletion tests/unit/fixed-toolbar/index.html
Expand Up @@ -13,7 +13,6 @@
<script>
$.testHelper.asyncLoad([
[
"navigation/event",
"navigation/method",
"widgets/fixedToolbar"
],
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/navigation/event/index.html
Expand Up @@ -11,7 +11,7 @@
<link rel="stylesheet" href="../../../../external/qunit.css"/>
<script>
$.testHelper.asyncLoad([
[ "navigation/event" ],
[ "events/navigate" ],
[ "event_core.js" ]
], "../../../../js" );
</script>
Expand Down
7 changes: 2 additions & 5 deletions tests/unit/navigation/method/index.html
Expand Up @@ -11,14 +11,11 @@
<link rel="stylesheet" href="../../../../../external/qunit.css"/>
<script>
$.testHelper.asyncLoad([
[
"navigation/event",
"navigation/method"
],
[ "navigation/method" ],
[ "method_core.js" ]
], "../../../../js" );
</script>
<script src="../swarminject.js"></script>
<script src="../../swarminject.js"></script>
</head>
<body>
<div id="qunit"></div>
Expand Down
Expand Up @@ -4,10 +4,10 @@
<!-- forces the base-tests into a push state disabled run and allows for
the test suite runner to pick it up as a seperate test set. See test/unit/ls.php,
test/unit/runner.js, base-tests.html, and tests/jquery.testHelper.js for more. -->
<script src="../../../js/jquery.js"></script>
<script src="../../jquery.testHelper.js"></script>
<script src="../../../../js/jquery.js"></script>
<script src="../../../jquery.testHelper.js"></script>
<script type="text/javascript">
$.testHelper.pushStateRedirect( "method-tests.html" );
$.testHelper.pushStateRedirect( "./" );
</script>
</head>
<body>
Expand Down

0 comments on commit 7e103f9

Please sign in to comment.