Added graphs and charts; Updated a lot of the collections for security and consistency; Updated all of the page to fix bugs and propagate fixes to all templates; Added the d3 library for graphing; Added a real ui for Measures and Venues.

This commit is contained in:
Wynne Crisman
2017-02-03 09:20:29 -08:00
parent 55337521f6
commit 184ce1133f
38 changed files with 2564 additions and 641 deletions

View File

@@ -110,6 +110,7 @@ Template.ProductSearch.events({
Session.set(PREFIX + 'searchQuery', searchQuery);
Session.set(PREFIX + 'searchFields', searchFields);
Session.set(PREFIX + 'skipCount', 0); //Reset the paging of the results.
}, 500)
});
Template.ProductSearch.helpers({
@@ -234,7 +235,7 @@ Template.ProductEditor.events({
"click .editorCancel": function(event, template) {
Session.set(PREFIX + "editedProduct", undefined);
Session.set(PREFIX + 'displayNewProduct', false);
template.$('.newProductButton').removeClass('active');
template.parentTemplate().$('.newProductButton').removeClass('active');
},
"click .editorApply": function(event, template) {
let name = template.$("input[name='name']").val().trim();
@@ -252,7 +253,7 @@ Template.ProductEditor.events({
else {
sAlert.success("Product created.");
Session.set(PREFIX + 'displayNewProduct', false);
template.$('.newProductButton').removeClass('active');
template.parentTemplate().$('.newProductButton').removeClass('active');
}
});
}
@@ -262,6 +263,7 @@ Template.ProductEditor.events({
else {
sAlert.success("Product updated.");
Session.set(PREFIX + "editedProduct", undefined);
template.parentTemplate().$('.newProductButton').removeClass('active');
}
});
}