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

Commit 7e103f9

Browse files
committed
move navigate events under events directory
1 parent 77b8304 commit 7e103f9

File tree

11 files changed

+12
-16
lines changed

11 files changed

+12
-16
lines changed

js/index.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
'widgets/page.js',
2121
'jquery.mobile.core.js',
2222
'widgets/loader.js',
23-
'navigation/event.js',
23+
'events/navigate.js',
2424
'navigation/path.js',
2525
'navigation/history.js',
2626
'navigation/navigator.js',

js/jquery.mobile.init.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ define([
88
"jquery",
99
"./jquery.mobile.core",
1010
"./jquery.mobile.support",
11-
'./navigation/event',
11+
'./events/navigate',
1212
'./navigation/path',
1313
'./navigation/method',
1414
"./jquery.mobile.navigation",

js/jquery.mobile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
define([
55
'require',
66
'./widgets/loader',
7-
'./navigation/event',
7+
'./events/navigate',
88
'./navigation/path',
99
'./navigation/history',
1010
'./navigation/navigator',

js/jquery.mobile.navigation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ define( [
77
"jquery",
88
"./jquery.mobile.core",
99
"./navigation/path",
10-
"./navigation/event",
10+
"./events/navigate",
1111
"./navigation/history",
1212
"./navigation/navigator",
1313
"./navigation/method",

js/navigation/navigator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//>>description: Navigation Manager
33
//>>label: AJAX Navigation System
44
//>>group: Navigation
5-
define([ "jquery", "./event", "./path", "./history" ], function( $ ) {
5+
define([ "jquery", "../events/navigate", "./path", "./history" ], function( $ ) {
66
//>>excludeEnd("jqmBuildExclude");
77
(function( $, undefined ) {
88
var path = $.mobile.path;

js/widgets/popup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ define( [
1515
"jquery",
1616
"../jquery.mobile.widget",
1717
"../jquery.mobile.support",
18-
"../navigation/event",
18+
"../events/navigate",
1919
"../navigation/path",
2020
"../navigation/history",
2121
"../navigation/navigator",

tests/unit/fixed-toolbar/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<script>
1414
$.testHelper.asyncLoad([
1515
[
16-
"navigation/event",
1716
"navigation/method",
1817
"widgets/fixedToolbar"
1918
],

tests/unit/navigation/event/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<link rel="stylesheet" href="../../../../external/qunit.css"/>
1212
<script>
1313
$.testHelper.asyncLoad([
14-
[ "navigation/event" ],
14+
[ "events/navigate" ],
1515
[ "event_core.js" ]
1616
], "../../../../js" );
1717
</script>

tests/unit/navigation/method/index.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,11 @@
1111
<link rel="stylesheet" href="../../../../../external/qunit.css"/>
1212
<script>
1313
$.testHelper.asyncLoad([
14-
[
15-
"navigation/event",
16-
"navigation/method"
17-
],
14+
[ "navigation/method" ],
1815
[ "method_core.js" ]
1916
], "../../../../js" );
2017
</script>
21-
<script src="../swarminject.js"></script>
18+
<script src="../../swarminject.js"></script>
2219
</head>
2320
<body>
2421
<div id="qunit"></div>

0 commit comments

Comments
 (0)