44 lines
1.7 KiB
HTML
44 lines
1.7 KiB
HTML
<div ng-controller="Umbraco.PrevalueEditors.RteController" class="rte-editor-preval">
|
|
|
|
<umb-control-group label="Toolbar" hide-label="false">
|
|
<div ng-repeat="cmd in tinyMceConfig.commands">
|
|
<label>
|
|
<input type="checkbox"
|
|
ng-checked="selected(cmd, cmd.frontEndCommand, model.value.toolbar)"
|
|
ng-model="cmd.selected"
|
|
ng-change="selectCommand(cmd)" />
|
|
|
|
<!--<img ng-src="{{cmd.icon}}" />-->
|
|
<i class="mce-ico" ng-class="(cmd.isCustom ? ' mce-i-custom ' : ' mce-i-') + cmd.fontIcon"></i>
|
|
|
|
{{cmd.name}}
|
|
</label>
|
|
</div>
|
|
</umb-control-group>
|
|
|
|
<umb-control-group label="Stylesheets" hide-label="0">
|
|
<div ng-repeat="css in stylesheets">
|
|
<label>
|
|
<input type="checkbox"
|
|
ng-checked="selected(css, css.name, model.value.stylesheets)"
|
|
ng-model="css.selected"
|
|
ng-change="selectStylesheet(css)" />
|
|
{{css.name}}
|
|
</label>
|
|
</div>
|
|
</umb-control-group>
|
|
|
|
<umb-control-group label="Dimensions" description="Width x Height">
|
|
<div class="vertical-align-items">
|
|
<input type="number" min="0" ng-model="model.value.dimensions.width" class="umb-editor-tiny" placeholder="Width" /> ×
|
|
<input type="number" min="0" ng-model="model.value.dimensions.height" class="umb-editor-tiny" placeholder="Height" /> Pixels
|
|
</div>
|
|
</umb-control-group>
|
|
|
|
<umb-control-group label="Maximum size for inserted images" description="0 to disable resizing">
|
|
<div class="vertical-align-items">
|
|
<input type="number" min="0" ng-model="model.value.maxImageSize" class="umb-editor-tiny" placeholder="Width/Height" /> Pixels
|
|
</div>
|
|
</umb-control-group>
|
|
|
|
</div> |