Add: pass appID to start.html

This commit is contained in:
2018-05-29 17:57:48 +09:00
parent 72ea114cc8
commit 34296567d0
5 changed files with 15 additions and 3 deletions
+8
View File
@@ -35,6 +35,14 @@ class SessionStorageManager {
return sessionStorage.getItem("playerUserID");
}
// playing app id
set playingAppID(value) {
sessionStorage.setItem("playingAppID", value);
}
get playingAppID() {
return sessionStorage.getItem("playingAppID");
}
// playing app name
set playingAppName(value) {
sessionStorage.setItem("playingAppName", value);