Sha256: 42db72b061ec86b8008130d0b6185bf7690fca72b42a9a88f50edfa71bd6bda9

Contents?: true

Size: 1.2 KB

Versions: 7

Compression:

Stored size: 1.2 KB

Contents

<script type="text/ng-template" id="promethee/components/details/edit/write">
  <div  ng-controller="DetailsController"
        ng-click="inspect(component, $event)"
        class=" promethee-edit__component 
                promethee-edit__component--details">
    <div class="promethee-edit__component-selected" ng-class="{'promethee-edit__component-selected--visible': promethee.inspected === component}">
      <div class="promethee-edit__toolbar">
        Details
        <ng-include src="'promethee/write/toolbar'"></ng-include>
      </div>
      <details>
        <summary>{{component.attributes.summary}}</summary>
        <ng-include src="'promethee/write/components'"></ng-include>
        <span type="button"
              class="btn btn-default btn-block"
              ng-click="addComponentTo(component.children)">
          Add component
        </span>
      </details>
    </div>
  </div>
</script>

<script>
  promethee.controller('ImageController', ['$scope', function($scope) {
    $scope.options = {
      toolbar: [
        ['headline', ['style']],
        ['style', ['bold', 'italic']],
        ['alignment', ['ul', 'ol', 'paragraph']],
        ['code', ['codeview']]
      ]
    };
  }]);
</script>

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
promethee-1.2.6 app/views/promethee/components/details/_edit.write.html.erb
promethee-1.2.5 app/views/promethee/components/details/_edit.write.html.erb
promethee-1.2.4 app/views/promethee/components/details/_edit.write.html.erb
promethee-1.2.3 app/views/promethee/components/details/_edit.write.html.erb
promethee-1.2.2 app/views/promethee/components/details/_edit.write.html.erb
promethee-1.2.1 app/views/promethee/components/details/_edit.write.html.erb
promethee-1.2.0 app/views/promethee/components/details/_edit.write.html.erb