mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-04-21 14:44:44 +00:00
fixed error on undefined var in init_core tests
This commit is contained in:
parent
7b578f7873
commit
8291f92ce8
1 changed files with 2 additions and 5 deletions
|
|
@ -3,7 +3,7 @@
|
|||
*/
|
||||
(function($){
|
||||
var mobilePage = undefined,
|
||||
libName = 'jquery.mobile.init.js',
|
||||
libName = 'jquery.mobile.init.js',
|
||||
coreLib = 'jquery.mobile.core.js',
|
||||
extendFn = $.extend,
|
||||
setGradeA = function(value) { $.mobile.gradeA = function(){ return value; }; },
|
||||
|
|
@ -27,9 +27,6 @@
|
|||
|
||||
// NOTE reset for pageLoading tests
|
||||
$('.ui-loader').remove();
|
||||
|
||||
// reset meta view port content
|
||||
$.mobile.metaViewportContent = metaViewportContentDefault;
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -76,7 +73,7 @@
|
|||
ok($("html").hasClass("ui-mobile"));
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
var findFirstPage = function() {
|
||||
return $(":jqmData(role='page')").first();
|
||||
|
|
|
|||
Loading…
Reference in a new issue