fix: misc issues

This commit is contained in:
Jannat Patel
2024-11-15 20:36:15 +05:30
parent 629c237349
commit 6a70ed18d8
4 changed files with 5 additions and 20 deletions

View File

@@ -65,11 +65,11 @@ onBeforeMount(() => {
Initialize: () => 'true',
Terminate: () => 'true',
GetValue: (key) => {
console.log(`GetValue called for key: ${key}`)
console.log(`GET: ${key}`)
return getDataFromLMS(key)
},
SetValue: (key, value) => {
console.log(`SetValue called for key: ${key} to value: ${value}`)
console.log(`SET: ${key} to value: ${value}`)
saveDataToLMS(key, value)
return 'true'
@@ -96,7 +96,6 @@ onBeforeMount(() => {
LMSGetErrorString: () => '',
LMSGetDiagnostic: () => '',
}
console.log(window.API_1484_11)
})
const getDataFromLMS = (key) => {