Global IronRouter loading template

According to spec, I must set the IronRouter loading template globally as in…

Router.configure({
  [...]
  loadingTemplate: 'myloadingtemplate',
  [...]
});

I’ve tried everything to I can think of without much success. Is it possible to set the IronRouter loading template globally in this way?

FWIW I’ve had no problems at all setting loading template on a per-route basis as in…

Router.route('/a_route', {
  loadingTemplate: 'myloadingtemplate',
  waitOn: function () {
  [...]
});
Router.route('/another_route', {
  loadingTemplate: 'myloadingtemplate',
  waitOn: function () {
  [...]
});

These are some perhaps relevant aspects of the IronRouter documentations and code that I’ve come accross…

Never mind, in the end it seems some unrelated tweak had been lost in a past merge. duh!

For the record, setting loadingTemplate in a Router.Configure declaration like the following does work:

Router.configure({
  [...]
  loadingTemplate: 'myloadingtemplate',
  [...]
});