mirror of
https://github.com/modernw/App-Installer-For-Windows-8.x-Reset.git
synced 2026-04-16 13:44:40 +10:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
319d13c2b1 |
@@ -1623,6 +1623,8 @@ public ref class MainHtmlWnd: public System::Windows::Forms::Form, public IScrip
|
||||
{
|
||||
if (!(g_wcmdflags & (DWORD)CMDPARAM::SILENT))
|
||||
{
|
||||
auto launch_when_ready = (bool)InvokeCallScriptFunction ("getLaunchWhenReady");
|
||||
if (!launch_when_ready) return;
|
||||
std::vector <std::wnstring> appids;
|
||||
for (auto &it : g_pkginfo)
|
||||
for (auto &it_s : it.applications)
|
||||
|
||||
@@ -495,7 +495,8 @@
|
||||
if (!controls) return false;
|
||||
var checkbox = controls.querySelector(".checkbox input");
|
||||
if (!checkbox) return false;
|
||||
return checkbox.checked == true;
|
||||
if (checkbox.disabled === true) return false;
|
||||
return checkbox.checked === true || checkbox.checked + "" === "true";
|
||||
}
|
||||
|
||||
function noticeLoadSelectPage() {
|
||||
|
||||
Reference in New Issue
Block a user