12345678910111213141516171819202122232425262728 |
- function ViewerPageState() {
- this.currentPage = 1;
- this.pageCount = 1;
- }
- ViewerPageState.prototype.setState = function(state) {
- applyJSONProperties(this, state);
- };
- ViewerPageState.prototype.getCurrentPage = function() {
- return this.currentPage;
- };
- ViewerPageState.prototype.getPageCount = function() {
- return this.pageCount;
- };
|