feat: default unique checkbox
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
<input id="page" hidden>
|
<input id="page" hidden>
|
||||||
<label for="search">Search: <input id="search" placeholder="Search"></label>
|
<label for="search">Search: <input id="search" placeholder="Search"></label>
|
||||||
<label for="bundleid">BundleId: <input id="bundleid" placeholder="com.gameloft."></label>
|
<label for="bundleid">BundleId: <input id="bundleid" placeholder="com.gameloft."></label>
|
||||||
<label for="unique">Unique: <input id="unique" type="checkbox"></label>
|
<label for="unique">Unique: <input id="unique" type="checkbox" checked></label>
|
||||||
<label for="minos">min OS: <input id="minos" placeholder="1.0"></label>
|
<label for="minos">min OS: <input id="minos" placeholder="1.0"></label>
|
||||||
<label for="maxos">max OS: <input id="maxos" placeholder="5.1.1"></label>
|
<label for="maxos">max OS: <input id="maxos" placeholder="5.1.1"></label>
|
||||||
<label for="device">Device: <select id="device">
|
<label for="device">Device: <select id="device">
|
||||||
|
|||||||
@@ -50,6 +50,9 @@ function loadDB() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function loadConfig(chkServer) {
|
function loadConfig(chkServer) {
|
||||||
|
if (!location.hash) {
|
||||||
|
return; // keep default values
|
||||||
|
}
|
||||||
const params = location.hash.substring(1).split('&');
|
const params = location.hash.substring(1).split('&');
|
||||||
const data = {};
|
const data = {};
|
||||||
params.forEach(function (param) {
|
params.forEach(function (param) {
|
||||||
|
|||||||
Reference in New Issue
Block a user