[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); GROUPS.push(group);
} }
function ColorController() { function ColorController() {
if (GROUPS.length === 0) { if (GROUPS.length === 0) {
initializeGroups(); initializeGroups();
} }
}
return { ColorController.prototype.groups = function () {
groups: function () {
return GROUPS; return GROUPS;
}
}; };
}
return ColorController; return ColorController;
} }