[Code Style] Begin refactoring forms bundle

WTD-1482
This commit is contained in:
Victor Woeltjen 2015-08-13 14:44:27 -07:00
parent 6302eee17e
commit 1c187c3914

View File

@ -83,19 +83,15 @@ define(
GROUPS.push(group);
}
function ColorController() {
if (GROUPS.length === 0) {
initializeGroups();
}
}
return {
groups: function () {
ColorController.prototype.groups = function () {
return GROUPS;
}
};
}
return ColorController;
}