| @@ -312,6 +312,9 @@ | |||||
| .search-box .include-super-awoken-label::after{ | .search-box .include-super-awoken-label::after{ | ||||
| content: "Including Super Awoken"; | content: "Including Super Awoken"; | ||||
| } | } | ||||
| .search-box .show-official-awoken-sorting-label::after{ | |||||
| content: "Use the official Awoken sorting"; | |||||
| } | |||||
| .search-box .sort-div::before{ | .search-box .sort-div::before{ | ||||
| content: "Sort by:"; | content: "Sort by:"; | ||||
| } | } | ||||
| @@ -304,6 +304,9 @@ | |||||
| .search-box .include-super-awoken-label::after{ | .search-box .include-super-awoken-label::after{ | ||||
| content: "超覚醒を含む"; | content: "超覚醒を含む"; | ||||
| } | } | ||||
| .search-box .show-official-awoken-sorting-label::after{ | |||||
| content: "公式の覚醒ソートを使用"; | |||||
| } | |||||
| .search-box .sort-div::before{ | .search-box .sort-div::before{ | ||||
| content: "並べ替え:"; | content: "並べ替え:"; | ||||
| } | } | ||||
| @@ -301,6 +301,9 @@ | |||||
| .search-box .include-super-awoken-label::after{ | .search-box .include-super-awoken-label::after{ | ||||
| content: "슈퍼 각성 포함"; | content: "슈퍼 각성 포함"; | ||||
| } | } | ||||
| .search-box .show-official-awoken-sorting-label::after{ | |||||
| content: "공식 각성 순서를 사용합니다"; | |||||
| } | |||||
| .search-box .sort-div::before{ | .search-box .sort-div::before{ | ||||
| content: "정렬:"; | content: "정렬:"; | ||||
| } | } | ||||
| @@ -307,6 +307,9 @@ | |||||
| .search-box .include-super-awoken-label::after{ | .search-box .include-super-awoken-label::after{ | ||||
| content: "包括超覺醒"; | content: "包括超覺醒"; | ||||
| } | } | ||||
| .search-box .show-official-awoken-sorting-label::after{ | |||||
| content: "使用官方覺醒排序"; | |||||
| } | |||||
| .search-box .sort-div::before{ | .search-box .sort-div::before{ | ||||
| content: "排序:"; | content: "排序:"; | ||||
| } | } | ||||
| @@ -517,6 +517,7 @@ var formation = new Formation(teamsCount,5); | |||||
| <div class="awoken-option"> | <div class="awoken-option"> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="consider-equivalent-awoken" id="consider-equivalent-awoken" checked><label class="config-checkbox-lbl consider-equivalent-awoken-label" for="consider-equivalent-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | <input type="checkbox" class="config-checkbox-ipt" name="consider-equivalent-awoken" id="consider-equivalent-awoken" checked><label class="config-checkbox-lbl consider-equivalent-awoken-label" for="consider-equivalent-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="include-super-awoken" id="include-super-awoken"><label class="config-checkbox-lbl include-super-awoken-label" for="include-super-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | <input type="checkbox" class="config-checkbox-ipt" name="include-super-awoken" id="include-super-awoken"><label class="config-checkbox-lbl include-super-awoken-label" for="include-super-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="show-official-awoken-sorting" id="show-official-awoken-sorting"><label class="config-checkbox-lbl show-official-awoken-sorting-label" for="show-official-awoken-sorting"><div class="config-checkbox-lbl-cicle"></div></label> | |||||
| </div> | </div> | ||||
| <ul class="awoken-ul"> | <ul class="awoken-ul"> | ||||
| <li class="awoken-count zero"><button class="awoken-icon" data-awoken-icon="43"></button><label class="count-symbol"><input type="button" class="count" value="0" /></label></li><!--7c--> | <li class="awoken-count zero"><button class="awoken-icon" data-awoken-icon="43"></button><label class="count-symbol"><input type="button" class="count" value="0" /></label></li><!--7c--> | ||||
| @@ -772,11 +772,13 @@ function creatNewUrl(arg) { | |||||
| if (!!(window.history && history.pushState)) { // 支持History API | if (!!(window.history && history.pushState)) { // 支持History API | ||||
| const language_i18n = arg.language || getQueryString("l") || getQueryString("lang"); //获取参数指定的语言 | const language_i18n = arg.language || getQueryString("l") || getQueryString("lang"); //获取参数指定的语言 | ||||
| const datasource = arg.datasource || getQueryString("s"); | const datasource = arg.datasource || getQueryString("s"); | ||||
| const outObj = formation.outObj(); | |||||
| const outObj = getQueryString("d") ? formation.outObj() : null; | |||||
| const newSearch = new URLSearchParams(); | const newSearch = new URLSearchParams(); | ||||
| if (language_i18n) newSearch.set("l", language_i18n); | if (language_i18n) newSearch.set("l", language_i18n); | ||||
| if (datasource && datasource != "ja") newSearch.set("s", datasource); | if (datasource && datasource != "ja") newSearch.set("s", datasource); | ||||
| if (getQueryString("guide")) newSearch.set("guide", getQueryString("guide")); | |||||
| if (getQueryString("id")) newSearch.set("id", getQueryString("id")); | |||||
| if (outObj) | if (outObj) | ||||
| { | { | ||||
| const dataJsonStr = JSON.stringify(outObj); //数据部分的字符串 | const dataJsonStr = JSON.stringify(outObj); //数据部分的字符串 | ||||
| @@ -466,7 +466,7 @@ var formation = new Formation(teamsCount,6); | |||||
| <button class="awoken-clear"></button> | <button class="awoken-clear"></button> | ||||
| <div class="awoken-option"> | <div class="awoken-option"> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="consider-equivalent-awoken" id="consider-equivalent-awoken" checked><label class="config-checkbox-lbl consider-equivalent-awoken-label" for="consider-equivalent-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | <input type="checkbox" class="config-checkbox-ipt" name="consider-equivalent-awoken" id="consider-equivalent-awoken" checked><label class="config-checkbox-lbl consider-equivalent-awoken-label" for="consider-equivalent-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="include-super-awoken" id="include-super-awoken"><label class="config-checkbox-lbl include-super-awoken-label" for="include-super-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | |||||
| <input type="checkbox" class="config-checkbox-ipt" name="include-super-awoken" id="include-super-awoken" checked><label class="config-checkbox-lbl include-super-awoken-label" for="include-super-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | |||||
| <input type="checkbox" class="config-checkbox-ipt" name="show-official-awoken-sorting" id="show-official-awoken-sorting"><label class="config-checkbox-lbl show-official-awoken-sorting-label" for="show-official-awoken-sorting"><div class="config-checkbox-lbl-cicle"></div></label> | <input type="checkbox" class="config-checkbox-ipt" name="show-official-awoken-sorting" id="show-official-awoken-sorting"><label class="config-checkbox-lbl show-official-awoken-sorting-label" for="show-official-awoken-sorting"><div class="config-checkbox-lbl-cicle"></div></label> | ||||
| </div> | </div> | ||||
| <ul class="awoken-ul"> | <ul class="awoken-ul"> | ||||
| @@ -1161,7 +1161,8 @@ var formation = new Formation(teamsCount,6); | |||||
| <button class="awoken-clear"></button> | <button class="awoken-clear"></button> | ||||
| <div class="awoken-option"> | <div class="awoken-option"> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="consider-equivalent-awoken" id="consider-equivalent-awoken" checked><label class="config-checkbox-lbl consider-equivalent-awoken-label" for="consider-equivalent-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | <input type="checkbox" class="config-checkbox-ipt" name="consider-equivalent-awoken" id="consider-equivalent-awoken" checked><label class="config-checkbox-lbl consider-equivalent-awoken-label" for="consider-equivalent-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | ||||
| <input type="checkbox" class="config-checkbox-ipt" name="include-super-awoken" id="include-super-awoken"><label class="config-checkbox-lbl include-super-awoken-label" for="include-super-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | |||||
| <input type="checkbox" class="config-checkbox-ipt" name="include-super-awoken" id="include-super-awoken" checked><label class="config-checkbox-lbl include-super-awoken-label" for="include-super-awoken"><div class="config-checkbox-lbl-cicle"></div></label> | |||||
| <input type="checkbox" class="config-checkbox-ipt" name="show-official-awoken-sorting" id="show-official-awoken-sorting"><label class="config-checkbox-lbl show-official-awoken-sorting-label" for="show-official-awoken-sorting"><div class="config-checkbox-lbl-cicle"></div></label> | |||||
| </div> | </div> | ||||
| <ul class="awoken-ul"> | <ul class="awoken-ul"> | ||||
| <li class="awoken-count zero"><button class="awoken-icon" data-awoken-icon="43"></button><label class="count-symbol"><input type="button" class="count" value="0" /></label></li><!--7c--> | <li class="awoken-count zero"><button class="awoken-icon" data-awoken-icon="43"></button><label class="count-symbol"><input type="button" class="count" value="0" /></label></li><!--7c--> | ||||