Commit 2e5b9761 authored by Sebastian's avatar Sebastian

Update to fix variable declaration

parent 41ddb164
...@@ -8,6 +8,11 @@ ...@@ -8,6 +8,11 @@
define(function(require) { define(function(require) {
"use strict"; "use strict";
// Connection to juypter. Is returned at the end of this script
var Contents = function(options) {
this.base_url = options.base_url;
};
var $ = require('jquery'); var $ = require('jquery');
var utils = require('base/js/utils'); var utils = require('base/js/utils');
...@@ -206,9 +211,6 @@ define(function(require) { ...@@ -206,9 +211,6 @@ define(function(require) {
* *
* *
*/ */
var Contents = function(options) {
this.base_url = options.base_url;
};
/** Error type */ /** Error type */
Contents.DIRECTORY_NOT_EMPTY_ERROR = 'DirectoryNotEmptyError'; Contents.DIRECTORY_NOT_EMPTY_ERROR = 'DirectoryNotEmptyError';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment