1234567891011121314151617181920212223242526 |
- function ViewerEventsConfig() {
- this.showContextMenuOnClick = false;
- }
- ViewerEventsConfig.prototype.configure = function(configuration) {
- applyJSONProperties(this, configuration);
- };
- ViewerEventsConfig.prototype.getShowContextMenuOnClick = function() {
- return this.showContextMenuOnClick;
- };
|