about summary refs log tree commit diff
path: root/gn2/wqflask/templates/gn_editor_settings.html
diff options
context:
space:
mode:
authorAlexander_Kabui2024-08-14 22:33:01 +0300
committerBonfaceKilz2024-08-29 18:58:56 +0300
commitc2caba1fc2cb089d4c4798afd21408cd852ea3fa (patch)
treec88f906a4f0dda202564bbd0b2aa6c6f3c6e5faf /gn2/wqflask/templates/gn_editor_settings.html
parent884d18b91b6f104f3078632ad6476ed78caa5344 (diff)
downloadgenenetwork2-c2caba1fc2cb089d4c4798afd21408cd852ea3fa.tar.gz
Applying jdlint to gn editor files.
Diffstat (limited to 'gn2/wqflask/templates/gn_editor_settings.html')
-rw-r--r--gn2/wqflask/templates/gn_editor_settings.html243
1 files changed, 158 insertions, 85 deletions
diff --git a/gn2/wqflask/templates/gn_editor_settings.html b/gn2/wqflask/templates/gn_editor_settings.html
index a87e3dc8..1e2cae10 100644
--- a/gn2/wqflask/templates/gn_editor_settings.html
+++ b/gn2/wqflask/templates/gn_editor_settings.html
@@ -1,100 +1,173 @@
 <section>
-  <h4><i>Select a theme</i></h4>
-  <form>
-    <div class="form-check">
-      <input class="form-check-input" type="radio" name="theme" id="twilightTheme" value="twilight" checked >
-      <label class="form-check-label" for="twilight">twilight</label>
-    </div>
-
+    <h4>
+        <i>Select a theme</i>
+    </h4>
+    <form>
+        <div class="form-check">
+            <input class="form-check-input"
+                   type="radio"
+                   name="theme"
+                   id="twilightTheme"
+                   value="twilight"
+                   checked>
+            <label class="form-check-label" for="twilight">twilight</label>
+        </div>
+        <div class="form-check">
+            <input class="form-check-input"
+                   type="radio"
+                   name="theme"
+                   id="draculaTheme"
+                   value="dracula">
+            <label class="form-check-label" for="draculaTheme">dracula</label>
+        </div>
+        <div class="form-check">
+            <input class="form-check-input"
+                   type="radio"
+                   name="theme"
+                   id="normalTheme"
+                   value="textmate"
+                   checked>
+            <label class="form-check-label" for="normalTheme">Text</label>
+        </div>
+        <div class="form-check">
+            <input class="form-check-input"
+                   type="radio"
+                   name="theme"
+                   id="monokaiTheme"
+                   value="monokai">
+            <label class="form-check-label" for="monokaiTheme">Monokai</label>
+        </div>
+        <div class="form-check">
+            <input class="form-check-input"
+                   type="radio"
+                   name="theme"
+                   id="customTheme"
+                   value="xcode">
+            <label class="form-check-label" for="customTheme">xcode</label>
+        </div>
+        <br>
+        <div class="form-group" style="padding-top:10px">
+            <h4>
+                <i>Select Font Size</i>
+            </h4>
+            <input type="range"
+                   class="form-control-range"
+                   id="fontSizeRange"
+                   name="fontSizeRange"
+                   min="10"
+                   max="36"
+                   step="1"
+                   value="16">
+            <em><span id="fontSizeValue">16</span> px</em>
+        </div>
+        <br>
+        <div>
+            <h4>
+                <i>Select Wrap Option:</i>
+            </h4>
+            <div class="form-check">
+                <input class="form-check-input"
+                       type="radio"
+                       name="wrap"
+                       id="normalTheme"
+                       value="true"
+                       checked>
+                <label class="form-check-label" for="normalTheme">True</label>
+            </div>
+            <div class="form-check">
+                <input class="form-check-input"
+                       type="radio"
+                       name="wrap"
+                       id="monokaiTheme"
+                       value="false">
+                <label class="form-check-label" for="monokaiTheme">False</label>
+            </div>
+        </div>
+        <div>
+            <h4>
+                <i>Cursor Styles:</i>
+            </h4>
+            <div class="form-check">
+                <input class="form-check-input"
+                       type="radio"
+                       name="cursor"
+                       id="aceCursor"
+                       value="ace"
+                       checked>
+                <label class="form-check-label" for="aceCursor">ace</label>
+            </div>
+            <div class="form-check">
+                <input class="form-check-input"
+                       type="radio"
+                       name="cursor"
+                       id="slimCursor"
+                       value="slim">
+                <label class="form-check-label" for="slimCursor">slim</label>
+            </div>
+            <div class="form-check">
+                <input class="form-check-input"
+                       type="radio"
+                       name="cursor"
+                       id="smoothCursor"
+                       value="smooth">
+                <label class="form-check-label" for="smoothCursor">smooth</label>
+            </div>
+            <div class="form-check">
+                <input class="form-check-input"
+                       type="radio"
+                       name="cursor"
+                       id="wideCursor"
+                       value="wide">
+                <label class="form-check-label" for="wideCursor">wide</label>
+            </div>
+        </div>
+    </form>
+    <br>
+    <h4>
+        <i>Choose KeyBoard Binding:</i>
+    </h4>
     <div class="form-check">
-      <input class="form-check-input" type="radio" name="theme" id="draculaTheme" value="dracula">
-      <label class="form-check-label" for="draculaTheme">dracula</label>
+        <input class="form-check-input"
+               type="radio"
+               name="keyboard"
+               id="default"
+               value="default"
+               checked>
+        <label class="form-check-label" for="default">Default</label>
     </div>
     <div class="form-check">
-      <input class="form-check-input" type="radio" name="theme" id="normalTheme" value="textmate" checked >
-      <label class="form-check-label" for="normalTheme">Text</label>
+        <input class="form-check-input"
+               type="radio"
+               name="keyboard"
+               id="vscode"
+               value="vscode">
+        <label class="form-check-label" for="vscode">Vscode</label>
     </div>
     <div class="form-check">
-      <input class="form-check-input" type="radio" name="theme" id="monokaiTheme" value="monokai" >
-      <label class="form-check-label" for="monokaiTheme">Monokai</label>
+        <input class="form-check-input"
+               type="radio"
+               name="keyboard"
+               id="emacs"
+               value="emacs">
+        <label class="form-check-label" for="emacs">Emacs</label>
     </div>
     <div class="form-check">
-      <input class="form-check-input" type="radio" name="theme" id="customTheme" value="xcode">
-      <label class="form-check-label" for="customTheme">xcode</label>
-    </div>
-
-    <br>
-    <div class="form-group" style="padding-top:10px">
-      <h4> <i>Select Font Size</i></h4>
-      <input type="range" class="form-control-range" id="fontSizeRange" name="fontSizeRange" min="10" max="36" step="1" value="16">
-      <em><span id="fontSizeValue">16</span> px</em>
+        <input class="form-check-input"
+               type="radio"
+               name="keyboard"
+               id="vim"
+               value="vim">
+        <label class="form-check-label" for="vim">Vim</label>
     </div>
-
     <br>
-    <div>
-      <h4><i>Select Wrap Option:</i></h4>
-      <div class="form-check">
-        <input class="form-check-input" type="radio" name="wrap" id="normalTheme" value="true"  checked>
-        <label class="form-check-label" for="normalTheme">True</label>
-      </div>
-      <div class="form-check">
-        <input class="form-check-input" type="radio" name="wrap" id="monokaiTheme" value="false">
-        <label class="form-check-label" for="monokaiTheme">False</label>
-      </div>
-    </div>
-    <div>
-      <h4><i>Cursor Styles:</i></h4>
-      <div class="form-check">
-        <input class="form-check-input" type="radio" name="cursor" id="aceCursor" value="ace" checked >
-        <label class="form-check-label" for="aceCursor">ace</label>
-      </div>
-      <div class="form-check">
-        <input class="form-check-input" type="radio" name="cursor" id="slimCursor" value="slim">
-        <label class="form-check-label" for="slimCursor">slim</label>
-      </div>
-      <div class="form-check">
-        <input class="form-check-input" type="radio" name="cursor" id="smoothCursor" value="smooth">
-        <label class="form-check-label" for="smoothCursor">smooth</label>
-      </div>
-      <div class="form-check">
-        <input class="form-check-input" type="radio" name="cursor" id="wideCursor" value="wide">
-        <label class="form-check-label" for="wideCursor">wide</label>
-      </div>
+    <div class="row">
+        <div class="col-sm-offset-1">
+            <button class="btn btn-primary" id="settingBtn">Save Settings</button>
+        </div>
     </div>
-  </form>
-  <br>
-
-  <h4><i>Choose KeyBoard Binding:</i></h4>
-  <div class="form-check">
-    <input class="form-check-input" type="radio" name="keyboard" id="default" value="default" checked >
-    <label class="form-check-label" for="default">Default</label>
-  </div>
-
-  <div class="form-check">
-    <input class="form-check-input" type="radio" name="keyboard" id="vscode" value="vscode">
-    <label class="form-check-label" for="vscode">Vscode</label>
-  </div>
-  <div class="form-check">
-    <input class="form-check-input" type="radio" name="keyboard" id="emacs" value="emacs">
-    <label class="form-check-label" for="emacs">Emacs</label>
-  </div>
-  <div class="form-check">
-    <input class="form-check-input" type="radio" name="keyboard" id="vim" value="vim" >
-    <label class="form-check-label" for="vim">Vim</label>
-  </div>
-  <br>
-  <div class="row">
-    <div class="col-sm-offset-1">
-      <button class="btn btn-primary" id="settingBtn">
-        Save Settings
-      </button>
-    </div>
-  </div>
 </section>
-
 {% block js %}
-<script>
-
+    <script>
   $('#fontSizeRange').on('input', function () {
       var fontSize = $(this).val();
       $('#fontSizeValue').text(fontSize);
@@ -118,5 +191,5 @@
           }),
       );
   })
-</script>
+    </script>
 {% endblock %}