Pete
Pete
It uses JSON just like everything D3js.
I defined my reactivevars like this: ``` Template.Calculator.onCreated(function CalculatorOnCreated() { // counter starts at 0 this.parent1 = new ReactiveVar({"name": ""}); this.parent2 = new ReactiveVar({"name": ""}); this.results = new ReactiveVar("collapse"); });...
Support multiple collections for multiple input fields, with each collection maps to an input field?
I got around a similar issue by adding the autocomplete id like this ``` "autocompleteselect input#parent1": function(e, t, doc) { Template.instance().parent1.set(doc); }, "autocompleteselect input#parent2": function(e, t, doc) { Template.instance().parent2.set(doc); },...
Just go change your urls.py under Lib/site-packages/django_markdown to: ``` """ Define preview URL. """ from django.conf.urls import url from .views import preview urlpatterns = [ url('preview/$', preview, name='django_markdown_preview'), ] ```