aboutsummaryrefslogtreecommitdiff
path: root/design/templates/notes/notes_create.html
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/notes/notes_create.html')
-rw-r--r--design/templates/notes/notes_create.html30
1 files changed, 10 insertions, 20 deletions
diff --git a/design/templates/notes/notes_create.html b/design/templates/notes/notes_create.html
index 9ca4111..1b39632 100644
--- a/design/templates/notes/notes_create.html
+++ b/design/templates/notes/notes_create.html
@@ -22,10 +22,10 @@
</div>
{% endif %}
{% endfor %}
-<p><input class="btn btn-inline" value="submit" type="submit" /></p>
+<p><input class="btn btn-inline note-save" value="Save" type="submit" /></p>
</form>
</article>
- <aside class="note-list-container">
+ <!--<aside class="note-list-container">
<div class="svg-wrapper"><svg class="svg-icon-arrow">
<svg viewBox="0 0 16 13" id="shape-double-arrow" width="100%" height="100%"><g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="square"><g id="Showing-post-info" transform="translate(-297.000000, -105.000000)" stroke="currentColor"><g transform="translate(305.000000, 111.500000) scale(-1, 1) rotate(-180.000000) translate(-305.000000, -111.500000) translate(297.000000, 105.000000)"><path d="M2.20710678,6.5 L6.85355339,1.85355339 L7.20710678,1.5 L6.5,0.792893219 L6.14644661,1.14644661 L1.14644661,6.14644661 L1.05805826,6.23483496 L0.792893219,6.5 L1.14644661,6.85355339 L6.14644661,11.8535534 L6.5,12.2071068 L7.20710678,11.5 L6.85355339,11.1464466 L2.20710678,6.5 Z" id="Combined-Shape"></path><path d="M10.2071068,6.5 L14.8535534,1.85355339 L15.2071068,1.5 L14.5,0.792893219 L14.1464466,1.14644661 L9.14644661,6.14644661 L9.05805826,6.23483496 L8.79289322,6.5 L9.14644661,6.85355339 L14.1464466,11.8535534 L14.5,12.2071068 L15.2071068,11.5 L14.8535534,11.1464466 L10.2071068,6.5 Z" id="Combined-Shape"></path></g></g></g></svg>
</svg></div>
@@ -41,31 +41,21 @@
</div>
</aside>
<div class="balance-container">
- </div>
+ </div>-->
</main>
+<div class="overlay-content hide" id="js-overlay-notebook">
+ {% include 'notes/partials/notebook_form.html' with form=notebook_form %}
+</div>
{% endblock %}
{% block jsinclude %}
-<script src="/media/js/highlight.pack.js"></script>
-<script src="/media/js/quill.min.js"></script>
+<script async src="/media/js/choices.min.js"></script>
+<script async src="/media/js/vanilla-picker.min.js"></script>
+<script async src="/media/js/highlight.pack.js"></script>
+<script async src="/media/js/quill.min.js"></script>
{% endblock %}
<script>
{% block jsdomready %}
- var note_text = document.getElementById('id_body_text');
- note_text.innerHTML = "q";
- var plaintext = document.getElementById("fs-body_text");
- plaintext.classList.add('hide')
- initQuill("#note-body");
- var form = document.getElementById('new-note-form');
- console.log(form);
- form.onsubmit = function() {
- var note_qjson = document.getElementById('id_body_qjson');
- note_qjson.innerHTML= JSON.stringify(window.quill.getContents());
- var note_html = document.getElementById('id_body_html');
- note_html.innerHTML = window.quill.root.innerHTML;
- var note_text = document.getElementById('id_body_text');
- note_text.innerHTML = window.quill.getText();
- };
{% endblock %}
</script>