15 lines
344 B
JavaScript
15 lines
344 B
JavaScript
import { Meteor } from 'meteor/meteor';
|
|
import { $ } from 'meteor/jquery';
|
|
import { Router } from 'meteor/iron:router';
|
|
|
|
Router.onRun(function() {
|
|
$(document.body).trigger('ohif.navigated');
|
|
this.next();
|
|
});
|
|
|
|
if (Meteor.isDevelopment) {
|
|
Router.route('/playground', function() {
|
|
this.render('componentPlayground');
|
|
});
|
|
}
|