FFFF Build: Removed jquery.mobile prefix from filenames · jquery-archive/jquery-mobile@c8b08b4 · GitHub
Skip to content
This repository was archived by the owner on Oct 8, 2021. It is now read-only.

Commit c8b08b4

Browse files
committed
Build: Removed jquery.mobile prefix from filenames
Fixes gh-6465
1 parent 00e80c9 commit c8b08b4

130 files changed

Lines changed: 385 additions & 361 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//>>css.structure: ../css/structure/jquery.mobile.core.css
66
//>>css.theme: ../css/themes/default/jquery.mobile.theme.css
77

8-
define( [ "jquery", "./jquery.mobile.core" ], function( jQuery ) {
8+
define( [ "jquery", "./core" ], function( jQuery ) {
99
//>>excludeEnd("jqmBuildExclude");
1010

1111
// buttonMarkup is deprecated as of 1.4.0 and will be removed in 1.5.0.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
//>>group: exclude
33

44
define([
5-
"./jquery.mobile.defaults",
6-
"./jquery.mobile.data",
7-
"./jquery.mobile.helpers"
5+
"./defaults",
6+
"./data",
7+
"./helpers"
88
], function() {});
99
//>>excludeEnd("jqmBuildExclude");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//>>css.structure: ../css/structure/jquery.mobile.core.css
66
//>>css.theme: ../css/themes/default/jquery.mobile.theme.css
77

8-
define( [ "jquery", "./jquery.mobile.ns" ], function( jQuery ) {
8+
define( [ "jquery", "./ns" ], function( jQuery ) {
99
//>>excludeEnd("jqmBuildExclude");
1010
(function( $, window, undefined ) {
1111
var nsNormalizeDict = {},
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//>>css.structure: ../css/structure/jquery.mobile.core.css
66
//>>css.theme: ../css/themes/default/jquery.mobile.theme.css
77

8-
define( [ "jquery", "./jquery.mobile.ns", "json!../package.json" ], function( jQuery, ns, pkg ) {
8+
define( [ "jquery", "./ns", "json!../package.json" ], function( jQuery, ns, pkg ) {
99
//>>excludeEnd("jqmBuildExclude");
1010
(function( $, window, undefined ) {
1111
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
File renamed without changes.

js/events/navigate.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
define([
88
"jquery",
99
"jquery-plugins/jquery.hashchange",
10-
"./../jquery.mobile.ns",
11-
"./../jquery.mobile.support" ], function( jQuery ) {
10+
"./../ns",
11+
"./../support" ], function( jQuery ) {
1212
//>>excludeEnd("jqmBuildExclude");
1313

1414
(function( $, undefined ) {

js/events/orientationchange.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//>>label: Orientation Change
44
//>>group: Events
55

6-
define( [ "jquery", "../jquery.mobile.support.orientation", "./throttledresize" ], function( jQuery ) {
6+
define( [ "jquery", "../support.orientation", "./throttledresize" ], function( jQuery ) {
77
//>>excludeEnd("jqmBuildExclude");
88

99
(function( $, window ) {

js/events/touch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//>>label: Touch
44
//>>group: Events
55

6-
define( [ "jquery", "../jquery.mobile.vmouse", "../jquery.mobile.support.touch" ], function( jQuery ) {
6+
define( [ "jquery", "../vmouse", "../support.touch" ], function( jQuery ) {
77
//>>excludeEnd("jqmBuildExclude");
88

99
(function( $, window, undefined ) {

0 commit comments

Comments
 (0)