[Edit] Add spec for toolbar

Add spec for class that will convert toolbar definition
provided by views to suitable input for mct-toolbar, WTD-878.
This commit is contained in:
Victor Woeltjen
2015-02-17 12:58:36 -08:00
parent ab546c9541
commit 8f14f4e5eb
5 changed files with 226 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
/*global define*/
define(
[],
function () {
"use strict";
function EditToolbar(structure, selection) {
return {
getStructure: function () {
},
getState: function () {
},
updateState: function (key) {
}
};
}
return EditToolbar;
}
);

View File

@@ -0,0 +1,8 @@
/*global define*/
define(
[],
function () {
"use strict";
}
);