Skip to content

Commit

Permalink
Merge pull request #159 from datalayer-externals/fix/js-test-156
Browse files Browse the repository at this point in the history
Use `var` instead of `const` to ensure js-test succeed
  • Loading branch information
ericsnekbytes authored Oct 11, 2022
2 parents 6ede4fd + d1604df commit f456061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nbclassic/static/notebook/js/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requirejs([
'use strict';
$('#notebook_about').click(function () {
// The baseUrlPrefix is only injected in the document by nbclassic.
const is_nbclassic = document.baseUrlPrefix !== undefined;
var is_nbclassic = document.baseUrlPrefix !== undefined;
// use underscore template to auto html escape
if (sys_info) {
var text = '';
Expand Down

0 comments on commit f456061

Please sign in to comment.