remove unnecessary 'js' subdir from services

part of the point of services is that they are just code, so they won't have js/less/etc. files.
This commit is contained in:
MinRK 2014-10-10 11:57:40 -07:00
parent 103d5dc9b7
commit a67abc297d
5 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ define([
'base/js/dialog',
'notebook/js/textcell',
'notebook/js/codecell',
'services/sessions/js/session',
'services/sessions/session',
'notebook/js/celltoolbar',
'components/marked/lib/marked',
'highlight',

View File

@ -5,7 +5,7 @@ define([
'base/js/namespace',
'jquery',
'base/js/utils',
'services/kernels/js/kernel',
'services/kernels/kernel',
], function(IPython, $, utils, kernel) {
"use strict";