File tree Expand file tree Collapse file tree 7 files changed +79
-0
lines changed
jupyter_notebook/static/phosphor-notebook Expand file tree Collapse file tree 7 files changed +79
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "directory" : "components"
3+ }
Original file line number Diff line number Diff line change 1+ module NotebookApp {
2+
3+ import Bootstrapper = phosphor . shell . Bootstrapper ;
4+
5+ export
6+ class NotebookApplication extends Bootstrapper {
7+ configurePlugins ( ) : Promise < void > {
8+ return this . pluginList . add ( [
9+ //plugins
10+ ] ) ;
11+ }
12+ }
13+ }
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " phosphor-notebook" ,
3+ "main" : " index.js" ,
4+ "version" : " 0.0.1" ,
5+ "authors" : [
6+ 7+ ],
8+ "description" : " Phosphor-based IPython notebook" ,
9+ "moduleType" : [
10+ " amd"
11+ ],
12+ "license" : " BSD" ,
13+ "ignore" : [
14+ " **/.*" ,
15+ " node_modules" ,
16+ " bower_components" ,
17+ " jupyter_notebook/static/components" ,
18+ " test" ,
19+ " tests"
20+ ],
21+ "dependencies" : {
22+ "phosphor" : " ~0.1.0"
23+ }
24+ }
Original file line number Diff line number Diff line change 1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < link href ="/static/components/phosphor/dist/phosphor.css " rel ="stylesheet " type ="text/css ">
5+ < link href ="build/index.css " rel ="stylesheet " type ="text/css ">
6+ < script src ="/static/components/phosphor/dist/phosphor.js "> </ script >
7+ < script src ="build/app.js "> </ script >
8+ < script src ="build/index.js "> </ script >
9+ </ head >
10+ < body >
11+ < div id ="app "> </ div >
12+ </ body >
13+ </ html >
Original file line number Diff line number Diff line change 1+ module Notebook {
2+
3+ import NotebookApp = require( "app" ) ;
4+
5+ function main ( ) : void {
6+ var notebook = new NotebookApp . NotebookApplication ;
7+ notebook . run ( ) ;
8+ } ;
9+
10+ window . onload = main ;
11+ }
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " v4" ,
3+ "repo" : " borisyankov/DefinitelyTyped" ,
4+ "ref" : " master" ,
5+ "path" : " typings" ,
6+ "bundle" : " typings/tsd.d.ts" ,
7+ "installed" : {
8+ "codemirror/codemirror.d.ts" : {
9+ "commit" : " 52fa2b9ce36f2c5843204e9bfbaada7cded9b47a"
10+ },
11+ "es6-promise/es6-promise.d.ts" : {
12+ "commit" : " 52fa2b9ce36f2c5843204e9bfbaada7cded9b47a"
13+ }
14+ }
15+ }
You can’t perform that action at this time.
0 commit comments