PHP Classes

File: toastui/src/js/ui/template/submenu/rotate.js

Recommend this page to a friend!
  Classes of Mark de Leon   PHP Document Scanner using SANE or eSCL AirPrint   toastui/src/js/ui/template/submenu/rotate.js   Download  
File: toastui/src/js/ui/template/submenu/rotate.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Document Scanner using SANE or eSCL AirPrint
Web interface to scan printed documents
Author: By
Last change:
Date: 4 years ago
Size: 1,764 bytes
 

Contents

Class file image Download
/** * @param {Locale} locale - Translate text * @param {Object} normal - iconStyle * @param {Object} active - iconStyle * @returns {string} */ export default ({locale, iconStyle: {normal, active}}) => (` <ul class="tui-image-editor-submenu-item"> <li id="tie-retate-button"> <div class="tui-image-editor-button clockwise"> <div> <svg class="svg_ic-submenu"> <use xlink:href="${normal.path}#${normal.name}-ic-rotate-clockwise" class="normal"/> <use xlink:href="${active.path}#${active.name}-ic-rotate-clockwise" class="active"/> </svg> </div> <label> 30 </label> </div> <div class="tui-image-editor-button counterclockwise"> <div> <svg class="svg_ic-submenu"> <use xlink:href="${normal.path}#${normal.name}-ic-rotate-counterclockwise" class="normal"/> <use xlink:href="${active.path}#${active.name}-ic-rotate-counterclockwise" class="active"/> </svg> </div> <label> -30 </label> </div> </li> <li class="tui-image-editor-partition only-left-right"> <div></div> </li> <li class="tui-image-editor-newline tui-image-editor-range-wrap"> <label class="range">${locale.localize('Range')}</label> <div id="tie-rotate-range"></div> <input id="tie-ratate-range-value" class="tui-image-editor-range-value" value="0" /> </li> </ul> `);