Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/js/checklist.js')
-rw-r--r--static/js/checklist.js28
1 files changed, 12 insertions, 16 deletions
diff --git a/static/js/checklist.js b/static/js/checklist.js
index efe5b8d..a0011ca 100644
--- a/static/js/checklist.js
+++ b/static/js/checklist.js
@@ -8,18 +8,11 @@ $( document ).ready(function() {
$(this).parent().attr('id','toc-'+id)
$(this).before('<input type="checkbox" disabled readonly>');
});
- // $.each(formConditions, function(i) {
- // console.log(this.id, this.condition)
- // })
});
-
-function registerShowIf(elmID, condition) {
- formConditions.unshift({id:elmID, condition:condition});
-}
-
-
-function formValue(formID, fieldName) {
+function formValue(fieldName) {
+ var formID = "6d2ab01b-fad4-4e70-83a8-b910ca848fec"
+ // var formElm = $('[name='+fieldName+']').parents('form');
var val = ""
var field = $("#"+formID +' [name='+fieldName+']')
if (field.attr("multiple") !== undefined) {
@@ -148,7 +141,13 @@ function listenFormChange(id){
newWrap = wrap(this, newWrap)
}
});
-
+
+ // Register Conditions
+ $.each($("#"+id+" div[cond]"), function(i) {
+ formConditions.unshift({id:$(this).attr('id'), condition:$(this).attr('cond')});
+ });
+
+
// on form change update display
$("#"+id).bind('change', function(e) {
formChange(id)
@@ -158,10 +157,6 @@ function listenFormChange(id){
formChange(id)
}
-function formData(name){
- return $("#"+name).serializeArray()
-}
-
function slugify(a) {
return a.toLowerCase().replace(/ /g, '-').replace(/[^\w-]+/g, '');
}
@@ -173,7 +168,8 @@ function downloadFile(formID){
at: new Date().toISOString(),
ref: "TODO",
url: document.location.protocol+"//"+document.location.host+document.location.pathname,
- data: formData(formID)};
+ data: $("#"+id).serializeArray()
+ };
var filename = fileName+".checklist.json";
var blob = new Blob([JSON.stringify(obj)], {type: 'application/json'});
if (window.navigator && window.navigator.msSaveOrOpenBlob) {