PHP Classes

File: toastui/src/js/ui/template/submenu/mask.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/mask.js   Download  
File: toastui/src/js/ui/template/submenu/mask.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,501 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> <div class="tui-image-editor-button"> <div> <input type="file" accept="image/*" id="tie-mask-image-file"> <svg class="svg_ic-submenu"> <use xlink:href="${normal.path}#${normal.name}-ic-mask-load" class="normal"/> <use xlink:href="${active.path}#${active.name}-ic-mask-load" class="active"/> </svg> </div> <label> ${locale.localize('Load Mask Image')} </label> </div> </li> <li class="tui-image-editor-partition only-left-right"> <div></div> </li> <li id="tie-mask-apply" class="tui-image-editor-newline apply" style="margin-top: 22px;margin-bottom: 5px"> <div class="tui-image-editor-button apply"> <svg class="svg_ic-menu"> <use xlink:href="${normal.path}#${normal.name}-ic-apply" class="normal"/> <use xlink:href="${active.path}#${active.name}-ic-apply" class="active"/> </svg> <label> ${locale.localize('Apply')} </label> </div> </li> </ul> `);