diff --git a/assets/js/app/core/directives/RawView.js b/assets/js/app/core/directives/RawView.js index a231bcd36..d97248af0 100644 --- a/assets/js/app/core/directives/RawView.js +++ b/assets/js/app/core/directives/RawView.js @@ -8,10 +8,11 @@ restrict: 'E', scope: { item: '=', - text: '=' + text: '=', + enabled: '=', }, replace: true, - template : '{{text ? " " + text : ""}}', + templateUrl: 'js/app/core/directives/partials/RawView.html', controller: [ '$scope','$uibModal', function controller($scope,$uibModal) { diff --git a/assets/js/app/core/directives/partials/RawView.html b/assets/js/app/core/directives/partials/RawView.html new file mode 100644 index 000000000..e513d68c3 --- /dev/null +++ b/assets/js/app/core/directives/partials/RawView.html @@ -0,0 +1,4 @@ + + + {{text ? " " + text : ""}} + \ No newline at end of file diff --git a/assets/js/app/services/partials/form-service-013.html b/assets/js/app/services/partials/form-service-013.html index cc1fdb442..c26bfe348 100644 --- a/assets/js/app/services/partials/form-service-013.html +++ b/assets/js/app/services/partials/form-service-013.html @@ -6,7 +6,19 @@
The service name.
- +Whether the service is active. If set to false, the proxy behavior will be as if any routes attached to it do not exist (404).
+