Remove unused variables in home.js

This commit is contained in:
Jeremy Tuloup
2020-03-02 10:02:08 +01:00
parent cfcd85a188
commit e30b2ca875

View File

@@ -1,16 +1,14 @@
// Copyright (c) Jupyter Development Team. // Copyright (c) Jupyter Development Team.
// Distributed under the terms of the Modified BSD License. // Distributed under the terms of the Modified BSD License.
require(["jquery", "moment", "jhapi", "utils"], function( require(["jquery", "moment", "jhapi"], function(
$, $,
moment, moment,
JHAPI, JHAPI
utils
) { ) {
"use strict"; "use strict";
var base_url = window.jhdata.base_url; var base_url = window.jhdata.base_url;
var prefix = window.jhdata.prefix;
var user = window.jhdata.user; var user = window.jhdata.user;
var api = new JHAPI(base_url); var api = new JHAPI(base_url);