Sha256: 4f446dea36a91e9a80d2291dce16e1e5da7e8f94a552b2a4f3cc091a0e40aa53

Contents?: true

Size: 1.25 KB

Versions: 12

Compression:

Stored size: 1.25 KB

Contents

<script type="text/ng-template" id="promethee/components/image/edit/write">
  <div  ng-controller="ImageController"
        ng-click="inspect(component, $event)"
        class=" promethee-edit__component
                promethee-edit__component--image">
    <div class="promethee-edit__component-selected" ng-class="{'promethee-edit__component-selected--visible': promethee.inspected === component}">
      <div class="promethee-edit__toolbar">
        Image
        <ng-include src="'promethee/write/toolbar'"></ng-include>
      </div>
      <figure ng-show="component.attributes.src">
        <img ng-src="{{component.attributes.src}}" class="img-responsive">
        <figcaption ng-show="component.attributes.caption" ng-bind-html="component.attributes.caption | htmlSafe"></figcaption>
      </figure>
      <div ng-hide="component.attributes.src">
        <p ng-hide="editing" class="text-center">Click to set the image</p>
      </div>
    </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

12 entries across 12 versions & 1 rubygems

Version Path
promethee-1.2.11 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.10 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.9 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.8 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.7 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.6 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.5 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.4 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.3 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.2 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.1 app/views/promethee/components/image/_edit.write.html.erb
promethee-1.2.0 app/views/promethee/components/image/_edit.write.html.erb