Merge pull request #38 from frederikbosch/master

Create javascript accessor for TopAppBar
This commit is contained in:
Adam Nathan 2016-05-16 09:34:29 -07:00
Родитель 773a8b9a5b 697ee23eea
Коммит 78a2429e4a
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); };