-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLicensePlateAnswerEditorFreeEntry.html
More file actions
19 lines (16 loc) · 1.02 KB
/
Copy pathLicensePlateAnswerEditorFreeEntry.html
File metadata and controls
19 lines (16 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
<require from="./css/general.css"></require>
<require from="./LicensePlateAnswerEditorFreeEntry.css"></require>
<require from="./GameStatusMessagesSignboard"></require>
<div class="license-plate-editor-container" >
<!-- space at top -->
<div style="border: thin dashed red;"></div>
<div style="border: thin dashed pink;" class="license-plate-text">
<input ref="puzzle_input_element" autocomplete="off" class="license-plate-char input-no-border ${show_input_error ? 'input-invalid' : ''}" disabled.bind="!current_game" style.bind="computed_style" maxLength.bind="max_length" value.bind="answer_text" input.delegate="onAnyInput($event)" keydown.delegate="onkeydown($event)" change.delegate="onChange()"
dragstart.delegate="onDragStart($event)" drop.delegate="onDrop($event)" ></input>
</div>
<div style="border: thin dashed pink;" >
<game-status-messages-signboard ></game-status-messages-signboard>
</div>
</div>
</template>