k1ng440
5/8/2014 - 7:32 AM

ironroute

ironroute

;(function () {
    "use strict";

    // override with mini-pages navigate method
    Meteor.navigateTo = function (path) {
      Router.go(path);
    };

    Router.map(function () {
        this.route('homeTemplate', {path: '/'});
    })
});