I've got a template that I downloaded:
http://halibegic.com/projects/merlin/
I want to use it in Meteor and I'm having major issues with
<script src="assets/js/script.js"></script>
at the bottom on line 444 not loading in the right order. When the page loads, none of the 4 functions specified in this js file work.
initNavbar();
initPortfolio();
initAnimations();
initTwitterFeed();
I have all the css, fonts, images, and js files in my public
folder and they are all correctly referenced in the HTML. They are not in the lib
directory which loads before everything else.
I think it's because the script is somehow loading before the DOM is loaded, so it has no DOM to apply things to.
Things I've tried:
When I change the name of
script.js
tomain.js
and change line 444 to<script src="assets/js/main.js"></script>
the animations still don't work.When I add this into the script file it still doesn't load correctly:
$(document).ready(function () { initNavbar(); initPortfolio(); initAnimations(); initTwitterFeed(); });
I can do
Template.layout.rendered/created = function () { add in all the function code and call them here }
but this seems like an uncredibly, INCREDIBLY messy and inefficient way to do this. I need to specify the load order of individual files, not code. I have around five .js files in this template and I don't want to have to cut out their code and paste it all into one
Template.layout.rendered/created
function.
Thanks to imslavko for the answer!
http://docs.meteor.com/#meteor_startup
So I put this into my client/views/application/layout.js. It uses the jQuery $.getScript, so you have to make sure that jQuery is loaded before you try this:
So all of these files will now load AFTER the DOM loads, and therefore animations work.
None of the above answers worked for me, so I kept hacking away until finally the following worked:
I put this in my layout.js file.
I've used this pattern
Then move all the
$(document).ready()
calls intoTemplate.layout.onRendered
and theclick
events intoTemplate.layout.events({
All you need to do is to load the javascript after the template is rendered.
If you have scripts loaded in $(window).load() or $(document).ready(), remember to get that out as well. You could run them in the promise of $getScript as well. This is your case:
It's clear from here:Meteor Docs
When not using special filenames and directories:
Files in subdirectories are loaded before files in parent directories, so that files in the deepest subdirectory are loaded first, and files in the root directory are loaded last. - Within a directory, files are loaded in alphabetical order by filename. Below is a complete list of special file and directory names that control file load order:
lib
After sorting as described above, all files under directories named lib are moved before everything else, preserving their order.
main.*
All files that match main.* are moved after everything else, preserving their order.