In Integrating a medium-editor on the Atmosphere with a Telescope App I have unknown parts that I can not make search for Atmosphere package pages makes only references to the github pages of clones.
I want to integrate a medium-editor clone with my Telescope app, say CitizenKevin/meteor-medium-editor on the Atmosphere. Instructions on the Github page of the clone is regarding non-Meteor apps, refrencing libs to html etc.
What is the thing with meteor. How I just start to use it. I see one skips the referencing in html parts. issuing meteor add citizenKevin:medium-editor
will do those settings. Is that right?
I have skipped this and just added a:
<div class="editable">adasdasd</div>
to my main.html file, I am using Discovering Meteor book.
And added initialising to the main.js file as:
editor = new MediumEditor('.editable');
But my div above is not editable now.
What is the missing thing in my setup and try?