Skip to content

Commit

Permalink
switch consts to var per @rgbkrk's suggestion to make tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
mpacer committed Feb 20, 2018
1 parent 4a636b4 commit 9ee188d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebook/static/notebook/js/menubar.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ define('notebook/js/menubar',[
this.notebook.notebook_path
);

const build_json_for_post = function(notebook, config, format) {
const json_to_pass = {
var build_json_for_post = function(notebook, config, format) {
var json_to_pass = {
notebook_contents: {
content: notebook.toJSON(),
name: notebook.notebook_name,
Expand Down

0 comments on commit 9ee188d

Please sign in to comment.