- 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()
{
localStorage.Results = $("#resultwrap").html();
localStorage.SearchResults = $("#searchresultswrap").html();
}
if(typeof(Storage)!=="undefined")
{
localStorage.Results = $("#resultwrap").html();
localStorage.SearchResults = $("#searchresultswrap").html();
}
}
};
var Util = {

View File

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

View File

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