Hi everybody,

In order to make a mobile website I used this module.
I turned on the option of using the mobile theme even if I was on a desktop computer (for development).
It worked well but now I can't go back, I can't turn off this option.
When I try to do it, it just show me a page with just this text "undefined".

I looked at the html code, with chrome, and I all the time I get :

<!--//--><![CDATA[//><!--
var jqm = jQuery.noConflict();
jqm(document).bind("mobileinit", function() {

	jqm.mobile.ns = "";
	jqm.mobile.autoInitializePage = ;
Uncaught SyntaxError: Unexpected token ;
	jqm.mobile.subPageUrlKey = "";
	jqm.mobile.activePageClass = "";
	jqm.mobile.activeBtnClass = "";
	jqm.mobile.ajaxEnabled = ;
	jqm.mobile.hashListeningEnabled = ;
	jqm.mobile.defaultPageTransition = "";
	jqm.mobile.defaultDialogTransition = "";
	jqm.mobile.minScrollBack = "";
	jqm.mobile.loadingMessage = "";
	jqm.mobile.pageLoadErrorMessage = "";
	jqm.mobile.linkBindingEnabled = ;
	jqm.mobile.pushStateEnabled = ;
	jqm.mobile.touchOverflowEnabled = ;
});
//--><!]]>

And chrome tells me that : jqm.mobile.autoInitializePage = ; is incorect, there should be jqm.mobile.autoInitializePage = "";

Does it related to my issue or not and if it yes, how can I change it ?

Thank you