Projekt

Obecné

Profil

Stáhnout (228 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 1e2b2c27 Tomáš Šimandl
/**
2
 * @constructor
3
 */
4
function GraphHistory() {
5
6
	this.goBack = function() {
7
		history.back();
8
	};
9
10
	this.goForward = function() {
11
		history.forward();
12
	};
13
14
	this.goTo = function(pageNumber) {
15
		history.go(pageNumber);
16
	};
17
18
}