##// END OF EJS Templates
Merge pull request #7273 from Carreau/content-no-namespace...
Matthias Bussonnier -
r19691:8f94b8f4 merge
parent child Browse files
Show More
@@ -1,12 +1,12 b''
1 // Copyright (c) IPython Development Team.
1 // Copyright (c) IPython Development Team.
2 // Distributed under the terms of the Modified BSD License.
2 // Distributed under the terms of the Modified BSD License.
3
3
4 define([
4 define(function(require) {
5 'base/js/namespace',
6 'jquery',
7 'base/js/utils',
8 ], function(IPython, $, utils) {
9 "use strict";
5 "use strict";
6
7 var $ = require('jquery');
8 var utils = require('base/js/utils');
9
10 var Contents = function(options) {
10 var Contents = function(options) {
11 /**
11 /**
12 * Constructor
12 * Constructor
@@ -245,8 +245,5 b' define(['
245 return this.get(path, {type: 'directory'});
245 return this.get(path, {type: 'directory'});
246 };
246 };
247
247
248
249 IPython.Contents = Contents;
250
251 return {'Contents': Contents};
248 return {'Contents': Contents};
252 });
249 });
General Comments 0
You need to be logged in to leave comments. Login now