This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(!activeSession){ | |
console.log("Starting new session") | |
// SESSION-1 SESSION WILL START HERE | |
this.$session.start(); | |
var session_id = this.$session.id(); | |
// SESSION-2 SESSION WILL CREATE PRO_TABLE | |
this.$session.set('pro_table', JSON.stringify([])); | |
this.$session.set('expected_pro_table', JSON.stringify([])); | |
console.log("Creating new table") |
OlderNewer