Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 | 82x 82x 82x 2x 82x 82x 82x 82x 82x 1x 82x 80x 80x | import knockout from "../ThirdParty/knockout.js";
import createCommand from "../createCommand.js";
/**
* The view model for {@link NavigationHelpButton}.
* @alias NavigationHelpButtonViewModel
* @constructor
*/
function NavigationHelpButtonViewModel() {
/**
* Gets or sets whether the instructions are currently shown. This property is observable.
* @type {boolean}
* @default false
*/
this.showInstructions = false;
const that = this;
this._command = createCommand(function () {
that.showInstructions = !that.showInstructions;
});
this._showClick = createCommand(function () {
that._touch = false;
});
this._showTouch = createCommand(function () {
that._touch = true;
});
this._touch = false;
/**
* Gets or sets the tooltip. This property is observable.
*
* @type {string}
*/
this.tooltip = "Navigation Instructions";
knockout.track(this, ["tooltip", "showInstructions", "_touch"]);
}
Object.defineProperties(NavigationHelpButtonViewModel.prototype, {
/**
* Gets the Command that is executed when the button is clicked.
* @memberof NavigationHelpButtonViewModel.prototype
*
* @type {Command}
*/
command: {
get: function () {
return this._command;
},
},
/**
* Gets the Command that is executed when the mouse instructions should be shown.
* @memberof NavigationHelpButtonViewModel.prototype
*
* @type {Command}
*/
showClick: {
get: function () {
return this._showClick;
},
},
/**
* Gets the Command that is executed when the touch instructions should be shown.
* @memberof NavigationHelpButtonViewModel.prototype
*
* @type {Command}
*/
showTouch: {
get: function () {
return this._showTouch;
},
},
});
export default NavigationHelpButtonViewModel;
|