1
0
Fork 0
mirror of https://github.com/mmumshad/ansible-playable.git synced 2025-03-09 23:38:54 +00:00

Fix Template loading

This commit is contained in:
Mumshad Mannambeth 2017-07-08 13:40:03 -04:00
parent 7ace379937
commit 34a003c698
7 changed files with 16 additions and 32 deletions

View file

@ -75,8 +75,7 @@ export class InventoryComponent {
$scope.showCreatInventoryModal = function () {
var modalInstance = $uibModal.open({
animation: true,
/*templateUrl: 'createTaskContent.html',*/
templateUrl: 'app/designer/inventory/new_inventory/new_inventory.html',
template: require('./new_inventory/new_inventory.html'),
controller: 'NewInventoryController',
size: 'md',
backdrop: 'static',
@ -105,8 +104,7 @@ export class InventoryComponent {
$scope.showCreateGroupModal = function (editGroup) {
var modalInstance = $uibModal.open({
animation: true,
/*templateUrl: 'createTaskContent.html',*/
templateUrl: 'app/designer/inventory/new_group/new_group.html',
template: require('./new_group/new_group.html'),
controller: 'NewGroupController',
size: 'lg',
backdrop: 'static',
@ -145,8 +143,7 @@ export class InventoryComponent {
$scope.showCreateHostModal = function (editHost) {
var modalInstance = $uibModal.open({
animation: true,
/*templateUrl: 'createTaskContent.html',*/
templateUrl: 'app/designer/inventory/new_host/new_host.html',
template: require('./new_host/new_host.html'),
controller: 'NewHostController',
size: 'lg',
backdrop: 'static',