HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/JTent/tentje.com/wwwroot/2015_02_13/layout/tsg_mobile/content/js/history.js
function CHistory() {
	this.Entries = new Array();
}

CHistory.prototype.addEntry = function(psEntry) {
	if (goHistory.length == 0) {
		this.Entries.push(psEntry)
	} else if (this.Entries[this.Entries.length-1] != psEntry) {
		this.Entries.push(psEntry)
	}
}

CHistory.prototype.back = function(poFunction) {
	if (this.Entries.length > 1) {
		lsPageID = this.Entries[this.Entries.length-2];
		this.Entries.splice(this.Entries.length-2,2);
		if (poFunction) {
			poFunction(lsPageID);
		}
	}
}

CHistory.prototype.getLength = function() {
	return this.Entries.length;
}