Styling update on the activity stream action details modal. Removed its dependency on the form generator and moved it out into a directive.

This commit is contained in:
Michael Abashian
2016-02-08 16:59:20 -05:00
parent a2cf365325
commit 49a458b178
11 changed files with 231 additions and 134 deletions

View File

@@ -0,0 +1,11 @@
/*************************************************
* Copyright (c) 2015 Ansible, Inc.
*
* All Rights Reserved
*************************************************/
import streamDetailModalDirective from './streamDetailModal.directive';
export default
angular.module('streamDetailModal', [])
.directive('streamDetailModal', streamDetailModalDirective);