Move list-generator into new structure

This commit is contained in:
Joe Fiorini
2015-03-11 13:25:06 -04:00
parent a687bb7cdc
commit f09080c931
31 changed files with 561 additions and 638 deletions

View File

@@ -133,12 +133,12 @@
*/
import GeneratorHelpers from './generator-helpers';
import ListGenerator from './list-generator';
import listGenerator from 'tower/shared/list-generator/main';
export default
angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', ListGenerator.name])
angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerator.name])
.factory('GenerateForm', ['$rootScope', '$location', '$compile', 'GenerateList', 'SearchWidget', 'PaginateWidget', 'Attr',
.factory('GenerateForm', ['$rootScope', '$location', '$compile', 'generateList', 'SearchWidget', 'PaginateWidget', 'Attr',
'Icon', 'Column', 'NavigationLink', 'HelpCollapse', 'Button', 'DropDown', 'Empty', 'SelectIcon', 'Store',
function ($rootScope, $location, $compile, GenerateList, SearchWidget, PaginateWidget, Attr, Icon, Column, NavigationLink,
HelpCollapse, Button, DropDown, Empty, SelectIcon, Store) {