@@ -135,7 +135,7 @@ angular.module('patternfly.form').directive('pfFormButtons', function () {
135
135
return {
136
136
replace : true ,
137
137
require : '^form' ,
138
- templateUrl : 'form/views /form-buttons.html' ,
138
+ templateUrl : 'form/form-buttons /form-buttons.html' ,
139
139
scope : {
140
140
pfHandleCancel : '&pfOnCancel' ,
141
141
pfHandleSave : '&pfOnSave' ,
@@ -233,7 +233,7 @@ angular.module('patternfly.form').directive('pfFormGroup', function () {
233
233
transclude : true ,
234
234
replace : true ,
235
235
require : '^form' ,
236
- templateUrl : 'form/views /form-group.html' ,
236
+ templateUrl : 'form/form-group /form-group.html' ,
237
237
scope : {
238
238
'pfLabel' : '@' ,
239
239
'pfField' : '@' ,
@@ -252,7 +252,7 @@ angular.module('patternfly.form').directive('pfFormGroup', function () {
252
252
if ( ! iAttrs . pfInputClass ) {
253
253
iAttrs . pfInputClass = 'col-sm-5' ;
254
254
}
255
-
255
+
256
256
if ( ! scope . pfField ) {
257
257
scope . pfField = input . attr ( 'id' ) ;
258
258
}
@@ -530,7 +530,7 @@ angular.module('patternfly.notification', []).provider('Notifications', function
530
530
'pfNotificationIndex' : '='
531
531
} ,
532
532
restrict : 'E' ,
533
- templateUrl : 'notification/views/ notification.html'
533
+ templateUrl : 'notification/notification.html'
534
534
} ;
535
535
} )
536
536
/**
@@ -597,7 +597,7 @@ angular.module('patternfly.notification', []).provider('Notifications', function
597
597
. directive ( 'pfNotificationList' , function ( ) {
598
598
return {
599
599
restrict : 'E' ,
600
- templateUrl : 'notification/views/ notification-list.html'
600
+ templateUrl : 'notification/notification-list.html'
601
601
} ;
602
602
} ) ;
603
603
; 'use strict' ;
@@ -864,25 +864,25 @@ angular.module('patternfly.validation', []).directive('pfValidation', function($
864
864
} ) ; ; angular . module ( 'patternfly.form' ) . run ( [ '$templateCache' , function ( $templateCache ) {
865
865
'use strict' ;
866
866
867
- $templateCache . put ( 'form/views /form-buttons.html' ,
867
+ $templateCache . put ( 'form/form-buttons /form-buttons.html' ,
868
868
"<div class=form-group><div class=\"{{ pfButtonContainerClass }}\"><div class=\"control-group buttons\"><button class=\"btn btn-default\" type=button ng-click=pfHandleCancel() ng-disabled=pfWorking translate>Cancel</button> <button class=\"btn btn-primary\" ng-click=\"pfHandleSave(); pfWorking = true\" ng-disabled=\"isInvalid() || pfWorking\"><i class=\"icon-spinner icon-spin\" ng-show=pfWorking></i> <span ng-show=pfWorking translate>Saving...</span> <span ng-hide=pfWorking translate>Save</span></button></div></div></div>"
869
869
) ;
870
870
871
871
872
- $templateCache . put ( 'form/views /form-group.html' ,
872
+ $templateCache . put ( 'form/form-group /form-group.html' ,
873
873
"<div class=form-group ng-class=\"{ 'has-error' : hasErrors() }\"><label for=\"{{ pfField }}\" class=\"control-label {{ pfLabelClass }}\">{{ pfLabel }}</label><div class=\"{{ pfInputClass }}\"><span ng-transclude></span> <span class=help-block ng-show=error.messages><ul><li ng-repeat=\"message in error.messages\">{{ message }}</li></ul></span></div></div>"
874
874
) ;
875
875
876
876
} ] ) ;
877
877
; angular . module ( 'patternfly.notification' ) . run ( [ '$templateCache' , function ( $templateCache ) {
878
878
'use strict' ;
879
879
880
- $templateCache . put ( 'notification/views/ notification-list.html' ,
880
+ $templateCache . put ( 'notification/notification-list.html' ,
881
881
"<div data-ng-show=\"notifications.data.length > 0\"><div ng-repeat=\"notification in notifications.data\"><pf-notification pf-notification-type=notification.type pf-notification-header=notification.header pf-notification-message=notification.message pf-notification-persistent=notification.isPersistent pf-notification-index=$index></pf-notification></div></div>"
882
882
) ;
883
883
884
884
885
- $templateCache . put ( 'notification/views/ notification.html' ,
885
+ $templateCache . put ( 'notification/notification.html' ,
886
886
"<div class=\"alert alert-{{pfNotificationType}}\"><button ng-show=pfNotificationPersistent type=button class=close ng-click=$parent.notifications.remove($index)><span aria-hidden=true>×</span><span class=sr-only>Close</span></button> <span class=\"pficon pficon-ok\" ng-show=\"pfNotificationType == 'success'\"></span> <span class=\"pficon pficon-info\" ng-show=\"pfNotificationType == 'info'\"></span> <span class=pficon-layered ng-show=\"pfNotificationType == 'danger'\"><span class=\"pficon pficon-error-octagon\"></span> <span class=\"pficon pficon-error-exclamation\"></span></span> <span class=pficon-layered ng-show=\"pfNotificationType == 'warning'\"><span class=\"pficon pficon-warning-triangle\"></span> <span class=\"pficon pficon-warning-exclamation\"></span></span> <strong>{{pfNotificationHeader}}</strong> {{pfNotificationMessage}}</div>"
887
887
) ;
888
888
0 commit comments