mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-04 15:11:48 -05:00
21 lines
712 B
JavaScript
21 lines
712 B
JavaScript
/*************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* All Rights Reserved
|
|
*************************************************/
|
|
|
|
import listGenerator from './list-generator/main';
|
|
import title from './title.directive';
|
|
import lodashAsPromised from './lodash-as-promised';
|
|
import stringFilters from './string-filters/main';
|
|
import truncatedText from './truncated-text.directive';
|
|
|
|
export default
|
|
angular.module('shared',
|
|
[ listGenerator.name,
|
|
stringFilters.name
|
|
])
|
|
.factory('lodashAsPromised', lodashAsPromised)
|
|
.directive('truncatedText', truncatedText)
|
|
.directive('title', title);
|