We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a0e2d commit d6c4e69Copy full SHA for d6c4e69
src/maths/index.ts
@@ -116,6 +116,8 @@ export const settingsFrontend : Panel[] = [
116
117
var byteCount : number = 0;
118
119
+ setting.setValue("No data found!")
120
+
121
chrome.storage.local.get() .then((res) => {
122
for (var key in res) {
123
var id = deserialiseQuestionID(key);
@@ -562,7 +564,7 @@ export const classMapping : ClassMapping[] = [
562
564
.addClassMatch("QuestionInfo")
563
565
.addNewClass("SparxPlusQuestionInfo")
566
.setIfMatched((element : HTMLElement, condition : Conditions) => {
- doWhiteboard(element)
567
+ if (customSettings.whiteboard) doWhiteboard(element)
568
}),
569
570
new ClassMapping([Conditions.Modified, Conditions.Added])
0 commit comments