imiger-fork/sources/WebContent/js/graphHistory.js @ 28be3f78
1 |
/**
|
---|---|
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 |
}
|