Mark Lenser pushed to branch feature/visual-editing-psp1 at cms-community / 
hippo-addon-channel-manager


Commits:
73b85539 by Tobias Jeger at 2016-11-16T08:54:49+01:00
CHANNELMGR-993 remove one-time binding constraint for document value-related 
bindings

- - - - -
1a318c88 by Mark at 2016-11-16T10:27:24+01:00
CHANNELMGR-993 Merge branch 'feature/visual-editing-psp1' into 
feature/visual-editing-psp1-CHANNLEMGR-993

- - - - -


1 changed file:

- frontend-ng/src/angularjs/channel/sidePanels/rightSidePanel/fields.html


Changes:

=====================================
frontend-ng/src/angularjs/channel/sidePanels/rightSidePanel/fields.html
=====================================
--- a/frontend-ng/src/angularjs/channel/sidePanels/rightSidePanel/fields.html
+++ b/frontend-ng/src/angularjs/channel/sidePanels/rightSidePanel/fields.html
@@ -17,7 +17,7 @@
      ng-switch="fieldType.type"
      class="field-wrapper">
   <!-- edge case: a multiple field with zero values -->
-  <md-input-container ng-if="::!$ctrl.hasValue(fieldType)"
+  <md-input-container ng-if="!$ctrl.hasValue(fieldType)"
                       class="md-block field qa-field"
                       md-no-float>
     <label>{{ ::fieldType.displayName }}</label>
@@ -25,29 +25,29 @@
   </md-input-container>
 
   <div ng-switch-when="COMPOUND"
-       ng-if="::$ctrl.hasValue(fieldType)"
+       ng-if="$ctrl.hasValue(fieldType)"
        class="field"
        ng-class="{
         'form-field-focused': $ctrl.hasFocusedField(fieldType),
         'form-field-compound': fieldType.type == 'COMPOUND'
        }"
-       ng-repeat="fieldValue in ::$ctrl.fieldValues[fieldType.id]">
+       ng-repeat="fieldValue in $ctrl.fieldValues[fieldType.id]">
     <h5>
       <md-icon class="material-icons">keyboard_arrow_down</md-icon>
       {{ ::$ctrl.getDisplayNameForCompound(fieldType, $index) }}
     </h5>
     <channel-fields field-types="::fieldType.fields"
-                    field-values="::fieldValue.fields">
+                    field-values="fieldValue.fields">
     </channel-fields>
   </div>
 
   <!-- other cases -->
   <div class="field"
        ng-switch-default
-       ng-if="::$ctrl.hasValue(fieldType)">
+       ng-if="$ctrl.hasValue(fieldType)">
     <md-input-container class="md-block qa-field"
                         md-no-float
-                        ng-repeat="fieldValue in 
::$ctrl.fieldValues[fieldType.id]"
+                        ng-repeat="fieldValue in 
$ctrl.fieldValues[fieldType.id]"
                         ng-switch="fieldType.type">
 
       <label ng-if="$first">{{ ::fieldType.displayName }}</label>



View it on GitLab: 
https://code.onehippo.org/cms-community/hippo-addon-channel-manager/compare/888942a59379e23ba9fbb913edd681be0b4524ce...1a318c88ea8c5e821503a6ee3e7f48f736c7edcc
_______________________________________________
Hippocms-svn mailing list
Hippocms-svn@lists.onehippo.org
https://lists.onehippo.org/mailman/listinfo/hippocms-svn

Reply via email to