-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
💄 clearly show which version was loaded in console
- Loading branch information
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
define(["require", "exports"], function (require, exports) { | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var version = '1.0.2'; | ||
function load_ipython_extension() { | ||
console.log("jupyter-echarts has been loaded"); | ||
console.log("jupyter-echarts " + version + " (echarts 3.6.2) has been loaded"); | ||
} | ||
exports.load_ipython_extension = load_ipython_extension; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
var version = '1.0.2'; | ||
|
||
export function load_ipython_extension(){ | ||
console.log("jupyter-echarts has been loaded"); | ||
console.log("jupyter-echarts " + version + " (echarts 3.6.2) has been loaded"); | ||
} |