Create javascript accessor for TopAppBar

This commit is contained in:
Frederik Bosch 2016-05-07 13:33:45 +02:00
Родитель ba5578f0c4
Коммит 697ee23eea
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -16,6 +16,9 @@ Page.prototype = Object.create(ace.UserControl.prototype);
Page.prototype.getBottomAppBar = function () { return this.get("Page.BottomAppBar"); };
Page.prototype.setBottomAppBar = function (commandBar) { this.set("Page.BottomAppBar", commandBar); };
Page.prototype.getTopAppBar = function () { return this.get("Page.TopAppBar"); };
Page.prototype.setTopAppBar = function (commandBar) { this.set("Page.TopAppBar", commandBar); };
// The same as get/set BottomAppBar, but with a better name:
Page.prototype.getCommandBar = function () { return this.get("Page.BottomAppBar"); };
Page.prototype.setCommandBar = function (commandBar) { this.set("Page.BottomAppBar", commandBar); };