mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-28 01:44:45 +00:00
Remove .js suffix from libName
This commit is contained in:
parent
f8dd89b269
commit
1e965041c1
5 changed files with 6 additions and 6 deletions
|
|
@ -3,8 +3,8 @@
|
|||
*/
|
||||
(function($){
|
||||
var mobilePage = undefined,
|
||||
libName = 'jquery.mobile.init.js',
|
||||
coreLib = 'jquery.mobile.core.js',
|
||||
libName = 'jquery.mobile.init',
|
||||
coreLib = 'jquery.mobile.core',
|
||||
extendFn = $.extend,
|
||||
setGradeA = function(value) { $.mobile.gradeA = function(){ return value; }; },
|
||||
reloadCoreNSandInit = function(){
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* mobile page unit tests
|
||||
*/
|
||||
(function($){
|
||||
var libName = 'jquery.mobile.page.sections.js';
|
||||
var libName = 'jquery.mobile.page.sections';
|
||||
|
||||
module(libName);
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
* mobile page unit tests
|
||||
*/
|
||||
(function($){
|
||||
var libName = 'jquery.mobile.page.js',
|
||||
var libName = 'jquery.mobile.page',
|
||||
themedefault = $.mobile.page.prototype.options.theme,
|
||||
keepNative = $.mobile.page.prototype.options.keepNative;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
|
||||
(function($){
|
||||
var libName = "jquery.mobile.forms.select.js",
|
||||
var libName = "jquery.mobile.forms.select",
|
||||
originalDefaultDialogTrans = $.mobile.defaultDialogTransition,
|
||||
originalDefTransitionHandler = $.mobile.defaultTransitionHandler,
|
||||
originalGetEncodedText = $.fn.getEncodedText,
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
|
||||
(function($){
|
||||
var libName = "jquery.mobile.forms.select.js";
|
||||
var libName = "jquery.mobile.forms.select";
|
||||
|
||||
$(document).bind('mobileinit', function(){
|
||||
$.mobile.selectmenu.prototype.options.nativeMenu = false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue