- minor bug fix

This commit is contained in:
walljm 2013-04-18 11:22:33 -04:00
parent 60e315f6b8
commit 25d11136b9
3 changed files with 14 additions and 8 deletions

View File

@ -224,9 +224,12 @@ var Settings = {
}, },
SaveResults: function() SaveResults: function()
{ {
localStorage.Results = $("#resultwrap").html(); if(typeof(Storage)!=="undefined")
localStorage.SearchResults = $("#searchresultswrap").html(); {
} localStorage.Results = $("#resultwrap").html();
localStorage.SearchResults = $("#searchresultswrap").html();
}
}
}; };
var Util = { var Util = {

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="walljm.dynamicbible" package="walljm.dynamicbible"
android:versionCode="7" android:versionCode="8"
android:versionName="1.3.4" > android:versionName="1.3.5" >
<supports-screens <supports-screens
android:smallScreens="false" android:smallScreens="false"
android:normalScreens="true" android:normalScreens="true"

View File

@ -224,9 +224,12 @@ var Settings = {
}, },
SaveResults: function() SaveResults: function()
{ {
localStorage.Results = $("#resultwrap").html(); if(typeof(Storage)!=="undefined")
localStorage.SearchResults = $("#searchresultswrap").html(); {
} localStorage.Results = $("#resultwrap").html();
localStorage.SearchResults = $("#searchresultswrap").html();
}
}
}; };
var Util = { var Util = {