fix(routing): Switch from iron:router to clinical:router so we respect ROOT_URL (#115)
This commit is contained in:
parent
ebe0a40f3e
commit
03d0798459
@ -26,6 +26,10 @@ clinical:auto-resizing@0.2.0
|
|||||||
clinical:fonts@1.1.6
|
clinical:fonts@1.1.6
|
||||||
clinical:hipaa-audit-log@2.4.2
|
clinical:hipaa-audit-log@2.4.2
|
||||||
clinical:hipaa-logger@1.3.0
|
clinical:hipaa-logger@1.3.0
|
||||||
|
clinical:router@2.0.19
|
||||||
|
clinical:router-location@2.1.0
|
||||||
|
clinical:router-middleware-stack@2.1.2
|
||||||
|
clinical:router-url@2.1.0
|
||||||
clinical:theming@0.4.10
|
clinical:theming@0.4.10
|
||||||
cultofcoders:persistent-session@0.4.5
|
cultofcoders:persistent-session@0.4.5
|
||||||
ddp@1.4.0
|
ddp@1.4.0
|
||||||
@ -56,10 +60,6 @@ iron:controller@1.0.12
|
|||||||
iron:core@1.0.11
|
iron:core@1.0.11
|
||||||
iron:dynamic-template@1.0.12
|
iron:dynamic-template@1.0.12
|
||||||
iron:layout@1.0.12
|
iron:layout@1.0.12
|
||||||
iron:location@1.0.11
|
|
||||||
iron:middleware-stack@1.1.0
|
|
||||||
iron:router@1.0.13
|
|
||||||
iron:url@1.0.11
|
|
||||||
johdirr:meteor-git-rev@0.0.4
|
johdirr:meteor-git-rev@0.0.4
|
||||||
jquery@1.11.11
|
jquery@1.11.11
|
||||||
launch-screen@1.1.1
|
launch-screen@1.1.1
|
||||||
@ -93,6 +93,7 @@ ohif:cornerstone@0.0.1
|
|||||||
ohif:cornerstone-settings@0.0.1
|
ohif:cornerstone-settings@0.0.1
|
||||||
ohif:design@0.0.1
|
ohif:design@0.0.1
|
||||||
ohif:dicom-services@0.0.1
|
ohif:dicom-services@0.0.1
|
||||||
|
ohif:dicomweb-client@0.0.1
|
||||||
ohif:hanging-protocols@0.0.1
|
ohif:hanging-protocols@0.0.1
|
||||||
ohif:header@0.0.1
|
ohif:header@0.0.1
|
||||||
ohif:hotkeys@0.0.1
|
ohif:hotkeys@0.0.1
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { Template } from 'meteor/templating';
|
import { Template } from 'meteor/templating';
|
||||||
import { Session } from 'meteor/session';
|
import { Session } from 'meteor/session';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { ReactiveVar } from 'meteor/reactive-var';
|
import { ReactiveVar } from 'meteor/reactive-var';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { Meteor } from 'meteor/meteor';
|
import { Meteor } from 'meteor/meteor';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
Router.configure({
|
Router.configure({
|
||||||
@ -59,4 +59,4 @@ Router.route('/study/:studyInstanceUid/series/:seriesInstanceUids', function ()
|
|||||||
const studyInstanceUid = this.params.studyInstanceUid;
|
const studyInstanceUid = this.params.studyInstanceUid;
|
||||||
const seriesInstanceUids = this.params.seriesInstanceUids.split(';');
|
const seriesInstanceUids = this.params.seriesInstanceUids.split(';');
|
||||||
OHIF.viewerbase.renderViewer(this, { studyInstanceUids: [studyInstanceUid], seriesInstanceUids });
|
OHIF.viewerbase.renderViewer(this, { studyInstanceUids: [studyInstanceUid], seriesInstanceUids });
|
||||||
}, { name: 'viewerSeries' });
|
}, { name: 'viewerSeries' });
|
||||||
|
|||||||
16
LesionTracker/package-lock.json
generated
16
LesionTracker/package-lock.json
generated
@ -5,12 +5,12 @@
|
|||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": {
|
"@babel/runtime": {
|
||||||
"version": "7.0.0-beta.53",
|
"version": "7.0.0-beta.54",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-beta.53.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.0.0-beta.54.tgz",
|
||||||
"integrity": "sha1-nfIq40gjzon3kAYFlLg+5XLixdI=",
|
"integrity": "sha1-Oeu0JyP+fKSz4bAOln6AE41Hyt8=",
|
||||||
"requires": {
|
"requires": {
|
||||||
"core-js": "2.5.7",
|
"core-js": "^2.5.7",
|
||||||
"regenerator-runtime": "0.12.0"
|
"regenerator-runtime": "^0.12.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"acorn": {
|
"acorn": {
|
||||||
@ -817,7 +817,7 @@
|
|||||||
"glob": {
|
"glob": {
|
||||||
"version": "7.1.2",
|
"version": "7.1.2",
|
||||||
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz",
|
||||||
"integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==",
|
"integrity": "sha1-wZyd+aAocC1nhhI4SmVSQExjbRU=",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"fs.realpath": "^1.0.0",
|
"fs.realpath": "^1.0.0",
|
||||||
@ -831,7 +831,7 @@
|
|||||||
"globals": {
|
"globals": {
|
||||||
"version": "9.18.0",
|
"version": "9.18.0",
|
||||||
"resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
|
"resolved": "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz",
|
||||||
"integrity": "sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==",
|
"integrity": "sha1-qjiWs+abSH8X4x7SFD1pqOMMLYo=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"globby": {
|
"globby": {
|
||||||
@ -1151,7 +1151,7 @@
|
|||||||
"minimatch": {
|
"minimatch": {
|
||||||
"version": "3.0.4",
|
"version": "3.0.4",
|
||||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
||||||
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
"integrity": "sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"brace-expansion": "^1.1.7"
|
"brace-expansion": "^1.1.7"
|
||||||
|
|||||||
@ -9,7 +9,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "^7.0.0-beta.53",
|
"@babel/runtime": "^7.0.0-beta.54",
|
||||||
"bcrypt": "^0.8.7",
|
"bcrypt": "^0.8.7",
|
||||||
"loglevel": "^1.6.1",
|
"loglevel": "^1.6.1",
|
||||||
"url": "^0.11.0"
|
"url": "^0.11.0"
|
||||||
|
|||||||
@ -20,6 +20,10 @@ caching-compiler@1.1.12
|
|||||||
caching-html-compiler@1.1.3
|
caching-html-compiler@1.1.3
|
||||||
callback-hook@1.1.0
|
callback-hook@1.1.0
|
||||||
check@1.3.1
|
check@1.3.1
|
||||||
|
clinical:router@2.0.19
|
||||||
|
clinical:router-location@2.1.0
|
||||||
|
clinical:router-middleware-stack@2.1.2
|
||||||
|
clinical:router-url@2.1.0
|
||||||
cultofcoders:persistent-session@0.4.5
|
cultofcoders:persistent-session@0.4.5
|
||||||
ddp@1.4.0
|
ddp@1.4.0
|
||||||
ddp-client@2.3.3
|
ddp-client@2.3.3
|
||||||
@ -47,10 +51,6 @@ iron:controller@1.0.12
|
|||||||
iron:core@1.0.11
|
iron:core@1.0.11
|
||||||
iron:dynamic-template@1.0.12
|
iron:dynamic-template@1.0.12
|
||||||
iron:layout@1.0.12
|
iron:layout@1.0.12
|
||||||
iron:location@1.0.11
|
|
||||||
iron:middleware-stack@1.1.0
|
|
||||||
iron:router@1.0.13
|
|
||||||
iron:url@1.0.11
|
|
||||||
johdirr:meteor-git-rev@0.0.4
|
johdirr:meteor-git-rev@0.0.4
|
||||||
jquery@1.11.11
|
jquery@1.11.11
|
||||||
launch-screen@1.1.1
|
launch-screen@1.1.1
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { Template } from 'meteor/templating';
|
import { Template } from 'meteor/templating';
|
||||||
import { Session } from 'meteor/session';
|
import { Session } from 'meteor/session';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { ReactiveVar } from 'meteor/reactive-var';
|
import { ReactiveVar } from 'meteor/reactive-var';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
Router.configure({
|
Router.configure({
|
||||||
|
|||||||
@ -12,7 +12,7 @@ Package.onUse(function (api) {
|
|||||||
api.use([
|
api.use([
|
||||||
'meteor-platform',
|
'meteor-platform',
|
||||||
'templating',
|
'templating',
|
||||||
'iron:router@1.0.13',
|
'clinical:router@2.0.19',
|
||||||
'grove:less@0.1.1',
|
'grove:less@0.1.1',
|
||||||
'session',
|
'session',
|
||||||
'reactive-dict'
|
'reactive-dict'
|
||||||
@ -77,7 +77,7 @@ Package.onUse(function (api) {
|
|||||||
Package.onTest(function (api) {
|
Package.onTest(function (api) {
|
||||||
api.use([
|
api.use([
|
||||||
'templating',
|
'templating',
|
||||||
'iron:router@1.0.13',
|
'clinical:router@2.0.19',
|
||||||
'grove:less@0.1.1',
|
'grove:less@0.1.1',
|
||||||
'standard-app-packages'
|
'standard-app-packages'
|
||||||
], ['client']);
|
], ['client']);
|
||||||
|
|||||||
@ -13,7 +13,7 @@ Package.on_use(function (api) {
|
|||||||
api.use('mrt:moment@2.8.1', 'client');
|
api.use('mrt:moment@2.8.1', 'client');
|
||||||
api.use('grove:less@0.1.1', 'client');
|
api.use('grove:less@0.1.1', 'client');
|
||||||
|
|
||||||
api.use('iron:router@1.0.13');
|
api.use('clinical:router@2.0.19');
|
||||||
api.use('clinical:fonts@1.0.0', 'client');
|
api.use('clinical:fonts@1.0.0', 'client');
|
||||||
api.use('clinical:auto-resizing@0.1.2', 'client');
|
api.use('clinical:auto-resizing@0.1.2', 'client');
|
||||||
api.use('clinical:hipaa-logger@1.0.0');
|
api.use('clinical:hipaa-logger@1.0.0');
|
||||||
@ -50,7 +50,7 @@ Package.onTest(function (api) {
|
|||||||
api.use('tinytest');
|
api.use('tinytest');
|
||||||
|
|
||||||
api.use('meteor-platform');
|
api.use('meteor-platform');
|
||||||
api.use('iron:router@1.0.4', 'client');
|
api.use('clinical:router@2.0.19', 'client');
|
||||||
api.use('mrt:moment@2.8.1', 'client');
|
api.use('mrt:moment@2.8.1', 'client');
|
||||||
api.use('grove:less@0.1.1', 'client');
|
api.use('grove:less@0.1.1', 'client');
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { Meteor } from 'meteor/meteor';
|
import { Meteor } from 'meteor/meteor';
|
||||||
import { $ } from 'meteor/jquery';
|
import { $ } from 'meteor/jquery';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
|
|
||||||
Router.onRun(function() {
|
Router.onRun(function() {
|
||||||
$(document.body).trigger('ohif.navigated');
|
$(document.body).trigger('ohif.navigated');
|
||||||
|
|||||||
@ -20,7 +20,7 @@ Package.onUse(function(api) {
|
|||||||
api.use('reactive-var');
|
api.use('reactive-var');
|
||||||
|
|
||||||
// Router dependencies
|
// Router dependencies
|
||||||
api.use('iron:router@1.0.13', 'client');
|
api.use('clinical:router@2.0.19', 'client');
|
||||||
|
|
||||||
// Component's library dependencies
|
// Component's library dependencies
|
||||||
api.use('natestrauser:select2@4.0.1', 'client');
|
api.use('natestrauser:select2@4.0.1', 'client');
|
||||||
|
|||||||
@ -30,7 +30,7 @@ async function makeRequest(url, options) {
|
|||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
// TODO: Kept getting weird build errors from RegExp
|
// TODO: Kept getting weird build errors from RegExp
|
||||||
const isAbsolute = parsed.href.indexOf('http://') === 0 || parsed.href.indexOf('https://');
|
const isAbsolute = parsed.href.indexOf('http://') === 0 || parsed.href.indexOf('https://') === 0;
|
||||||
|
|
||||||
let url = parsed.href;
|
let url = parsed.href;
|
||||||
|
|
||||||
@ -38,6 +38,8 @@ async function makeRequest(url, options) {
|
|||||||
url = Meteor.absoluteUrl(parsed.href);
|
url = Meteor.absoluteUrl(parsed.href);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.warn(url);
|
||||||
|
|
||||||
fetch(url, requestOpt).then((response) => {
|
fetch(url, requestOpt).then((response) => {
|
||||||
if (response.status >= 400) {
|
if (response.status >= 400) {
|
||||||
reject(new Error(response.status));
|
reject(new Error(response.status));
|
||||||
|
|||||||
@ -14,7 +14,7 @@ Package.onUse(function(api) {
|
|||||||
api.use('random');
|
api.use('random');
|
||||||
api.use('templating');
|
api.use('templating');
|
||||||
api.use('natestrauser:select2@4.0.1', 'client');
|
api.use('natestrauser:select2@4.0.1', 'client');
|
||||||
api.use('iron:router@1.0.13');
|
api.use('clinical:router@2.0.19');
|
||||||
api.use('momentjs:moment');
|
api.use('momentjs:moment');
|
||||||
api.use('validatejs');
|
api.use('validatejs');
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { Session } from 'meteor/session';
|
import { Session } from 'meteor/session';
|
||||||
import { hotkeys } from 'meteor/ohif:hotkeys';
|
import { hotkeys } from 'meteor/ohif:hotkeys';
|
||||||
|
|
||||||
|
|||||||
@ -18,7 +18,7 @@ Package.onUse(function(api) {
|
|||||||
'stylus',
|
'stylus',
|
||||||
'reactive-var',
|
'reactive-var',
|
||||||
'session',
|
'session',
|
||||||
'iron:router',
|
'clinical:router',
|
||||||
'cultofcoders:persistent-session'
|
'cultofcoders:persistent-session'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { Meteor } from 'meteor/meteor';
|
import { Meteor } from 'meteor/meteor';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
Meteor.startup(function() {
|
Meteor.startup(function() {
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
|
|
||||||
// Functions
|
// Functions
|
||||||
import { getStudyPriors } from './getStudyPriors';
|
import { getStudyPriors } from './getStudyPriors';
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads multiple unassociated studies in the Viewer
|
* Loads multiple unassociated studies in the Viewer
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { Accounts } from 'meteor/accounts-base';
|
import { Accounts } from 'meteor/accounts-base';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
|
|
||||||
Accounts.onLogout(() => {
|
Accounts.onLogout(() => {
|
||||||
Router.go('/entrySignIn');
|
Router.go('/entrySignIn');
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
OHIF.user.audit = () => {
|
OHIF.user.audit = () => {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
OHIF.user.changePassword = () => {
|
OHIF.user.changePassword = () => {
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
import { Meteor } from 'meteor/meteor';
|
import { Meteor } from 'meteor/meteor';
|
||||||
import { Template } from 'meteor/templating';
|
import { Template } from 'meteor/templating';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
Template.userLogin.onCreated(() => {
|
Template.userLogin.onCreated(() => {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
|
|
||||||
Router.route('/login', function() {
|
Router.route('/login', function() {
|
||||||
this.layout('mainLayout', { data: {} });
|
this.layout('mainLayout', { data: {} });
|
||||||
|
|||||||
@ -18,7 +18,7 @@ Package.onUse(function(api) {
|
|||||||
api.use([
|
api.use([
|
||||||
'templating',
|
'templating',
|
||||||
'stylus',
|
'stylus',
|
||||||
'iron:router'
|
'clinical:router'
|
||||||
], 'client');
|
], 'client');
|
||||||
|
|
||||||
// OHIF dependencies
|
// OHIF dependencies
|
||||||
|
|||||||
@ -13,7 +13,7 @@ Package.onUse(function(api) {
|
|||||||
|
|
||||||
api.use('ecmascript');
|
api.use('ecmascript');
|
||||||
api.use('standard-app-packages');
|
api.use('standard-app-packages');
|
||||||
api.use('iron:router@1.0.13');
|
api.use('clinical:router@2.0.19');
|
||||||
|
|
||||||
api.use('ohif:core');
|
api.use('ohif:core');
|
||||||
api.use('ohif:servers');
|
api.use('ohif:servers');
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { Meteor } from 'meteor/meteor';
|
import { Meteor } from 'meteor/meteor';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { Accounts } from 'meteor/accounts-base';
|
import { Accounts } from 'meteor/accounts-base';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
import { Servers } from 'meteor/ohif:servers/both/collections';
|
import { Servers } from 'meteor/ohif:servers/both/collections';
|
||||||
|
|||||||
@ -27,12 +27,12 @@ ohif:cornerstone-settings
|
|||||||
ohif:viewerbase
|
ohif:viewerbase
|
||||||
ohif:metadata
|
ohif:metadata
|
||||||
ohif:study-list
|
ohif:study-list
|
||||||
ohif:dicom-services
|
ohif:dicomweb-client
|
||||||
|
|
||||||
aldeed:template-extension
|
aldeed:template-extension
|
||||||
aldeed:simple-schema@1.5.3
|
aldeed:simple-schema@1.5.3
|
||||||
stylus@2.513.9
|
stylus@2.513.9
|
||||||
iron:router
|
clinical:router
|
||||||
session@1.1.7
|
session@1.1.7
|
||||||
cultofcoders:persistent-session
|
cultofcoders:persistent-session
|
||||||
reactive-dict@1.2.0
|
reactive-dict@1.2.0
|
||||||
|
|||||||
@ -20,6 +20,10 @@ caching-compiler@1.1.12
|
|||||||
caching-html-compiler@1.1.3
|
caching-html-compiler@1.1.3
|
||||||
callback-hook@1.1.0
|
callback-hook@1.1.0
|
||||||
check@1.3.1
|
check@1.3.1
|
||||||
|
clinical:router@2.0.19
|
||||||
|
clinical:router-location@2.1.0
|
||||||
|
clinical:router-middleware-stack@2.1.2
|
||||||
|
clinical:router-url@2.1.0
|
||||||
cultofcoders:persistent-session@0.4.5
|
cultofcoders:persistent-session@0.4.5
|
||||||
ddp@1.4.0
|
ddp@1.4.0
|
||||||
ddp-client@2.3.3
|
ddp-client@2.3.3
|
||||||
@ -47,10 +51,6 @@ iron:controller@1.0.12
|
|||||||
iron:core@1.0.11
|
iron:core@1.0.11
|
||||||
iron:dynamic-template@1.0.12
|
iron:dynamic-template@1.0.12
|
||||||
iron:layout@1.0.12
|
iron:layout@1.0.12
|
||||||
iron:location@1.0.11
|
|
||||||
iron:middleware-stack@1.1.0
|
|
||||||
iron:router@1.1.2
|
|
||||||
iron:url@1.1.0
|
|
||||||
jquery@1.11.11
|
jquery@1.11.11
|
||||||
launch-screen@1.1.1
|
launch-screen@1.1.1
|
||||||
livedata@1.0.18
|
livedata@1.0.18
|
||||||
@ -82,6 +82,7 @@ ohif:cornerstone@0.0.1
|
|||||||
ohif:cornerstone-settings@0.0.1
|
ohif:cornerstone-settings@0.0.1
|
||||||
ohif:design@0.0.1
|
ohif:design@0.0.1
|
||||||
ohif:dicom-services@0.0.1
|
ohif:dicom-services@0.0.1
|
||||||
|
ohif:dicomweb-client@0.0.1
|
||||||
ohif:header@0.0.1
|
ohif:header@0.0.1
|
||||||
ohif:hotkeys@0.0.1
|
ohif:hotkeys@0.0.1
|
||||||
ohif:log@0.0.1
|
ohif:log@0.0.1
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
import { Meteor } from 'meteor/meteor';
|
import { Meteor } from 'meteor/meteor';
|
||||||
import { Router } from 'meteor/iron:router';
|
import { Router } from 'meteor/clinical:router';
|
||||||
import { OHIF } from 'meteor/ohif:core';
|
import { OHIF } from 'meteor/ohif:core';
|
||||||
|
|
||||||
if (Meteor.isClient) {
|
if (Meteor.isClient) {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user