mirror of
https://gitlab.com/MrFry/moodle-test-userscript
synced 2025-04-01 20:22:48 +02:00
Merge branch 'devel'
This commit is contained in:
commit
73f3631f75
1 changed files with 45 additions and 37 deletions
28
main.js
28
main.js
|
@ -32,7 +32,7 @@ const forceTestPage = false;
|
|||
const forceResultPage = false;
|
||||
const forceDefaultPage = false;
|
||||
const logElementGetting = false;
|
||||
const log = false;
|
||||
const log = true;
|
||||
|
||||
const motdShowCount = 3;
|
||||
var motd = "";
|
||||
|
@ -227,6 +227,8 @@ class QuestionDB {
|
|||
//: Main function {{{
|
||||
function Main() {
|
||||
'use strict';
|
||||
console.time('main');
|
||||
|
||||
Init(function(count, subjCount) {
|
||||
var url = location.href;
|
||||
|
||||
|
@ -237,9 +239,7 @@ function Main() {
|
|||
m: "Passzív mód bekapcsolva, válaszok megjelenítéséhez menü gomb alatt kapcsold ki, és frissíts!",
|
||||
isSimple: true
|
||||
});
|
||||
return;
|
||||
}
|
||||
|
||||
} else {
|
||||
try {
|
||||
if ((url.includes("/quiz/") && url.includes("attempt.php")) || forceTestPage) { // if the current page is a test
|
||||
HandleQuiz();
|
||||
|
@ -265,8 +265,12 @@ function Main() {
|
|||
Log(
|
||||
"Itteni hibák 100% a moodle hiba. Kivéve, ha oda van írva hogy script error ;) Ha ilyesmi szerepel itt, akkor olvasd el a segítség szekciót! Nagy esélyel a kérdéseket nem lehetett beolvasni."
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
console.log("Moodle Test Script run time:");
|
||||
console.timeEnd('main');
|
||||
|
||||
if (forceTestPage || forceResultPage || forceDefaultPage)
|
||||
alert("TEST MODE");
|
||||
}
|
||||
|
@ -1587,7 +1591,7 @@ function ShowMessage(msgItem, timeout, funct) {
|
|||
mainDiv.style.background = "#222d32"; // background color
|
||||
mainDiv.style.color = "#ffffff"; // text color
|
||||
mainDiv.style.borderColor = "#035a8f"; // border color
|
||||
mainDiv.style.border = "solid";
|
||||
mainDiv.style.border = "none";
|
||||
mainDiv.style.top = (startFromTop) + 'px';
|
||||
mainDiv.style.left = (window.innerWidth - width) / 2 + 'px';
|
||||
mainDiv.style.opacity = "0.9"; // setting starting opacity
|
||||
|
@ -1817,12 +1821,16 @@ function ShowMenu() {
|
|||
|
||||
questionsTickBox.addEventListener("click", function() {
|
||||
GM_setValue("skipLoad", questionsTickBox.checked);
|
||||
if (GM_getValue("skipLoad")) {
|
||||
var msg = "";
|
||||
if (GM_getValue("skipLoad"))
|
||||
msg = "Passzív mód bekapcsolva, mostantól kérdések nem lesznek betöltve/lekérve.";
|
||||
else
|
||||
msg = "Passzív mód kikapcsolva, frissíts az érvénybe lépéshez!";
|
||||
|
||||
ShowMessage({
|
||||
m: "Passzív mód bekapcsolva, mostantól kérdések nem lesznek betöltve/lekérve.",
|
||||
m: msg,
|
||||
isSimple: true
|
||||
}, 10);
|
||||
}
|
||||
}, 6);
|
||||
|
||||
});
|
||||
var loadDataCheckBoxText = CreateNodeWithText(questionsTickBox,
|
||||
|
@ -1860,7 +1868,7 @@ function ShowMenuList() {
|
|||
menuDiv.style.background = "#222d32"; // background color
|
||||
menuDiv.style.color = "#ffffff"; // text color
|
||||
menuDiv.style.borderColor = "#035a8f"; // border color
|
||||
menuDiv.style.border = "solid";
|
||||
menuDiv.style.border = "none";
|
||||
menuDiv.style.opacity = "1"; // setting starting opacity
|
||||
|
||||
var fiveMargin = "5px 5px 5px 5px";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue