In my most recent Meteor app I'm using methods to fetch data from the server for my templates rather than subscriptions, and (I think?) this confuses the Spiderable package which don't seem to understand when the consider the page ready to render. The fetching of the data are in some cases bound to the templates in their onCreated callback.
So my question is: is there some kind of manual way of telling the spiderable package that all methods/subs are done and all templates have finished loading?
(For routing I'm using the flow router if that's of any importance.)