1
1
var widgets = require ( 'jupyter-js-widgets' ) ;
2
2
var mpl = require ( './mpl.js' ) ;
3
+ var _ = require ( 'underscore' ) ;
3
4
var $ = require ( 'jquery' ) ;
4
5
require ( 'jquery-ui' ) ;
5
6
7
+ var version = require ( '../package.json' ) . version ;
8
+
9
+ var MPLCanvasModel = widgets . DOMWidgetModel . extend ( {
10
+ defaults : function ( ) {
11
+ return _ . extend ( widgets . WidgetModel . prototype . defaults ( ) , {
12
+ _model_name : 'MPLCanvasModel' ,
13
+ _view_name : 'MPLCanvasView' ,
14
+ _model_module : 'jupyter-matplotlib' ,
15
+ _view_module : 'jupyter-matplotlib' ,
16
+ _model_module_version : '^' + version ,
17
+ _view_module_version : '^' + version
18
+ } ) ;
19
+ }
20
+ } ) ;
21
+
22
+
6
23
var MPLCanvasView = widgets . DOMWidgetView . extend ( {
7
24
8
25
render : function ( ) {
9
26
var that = this ;
10
-
11
27
var id = this . model . get ( '_id' ) ;
12
-
13
28
var element = this . $el ;
14
29
15
30
this . ws_proxy = this . comm_websocket_adapter ( this . model . comm ) ;
@@ -51,7 +66,6 @@ var MPLCanvasView = widgets.DOMWidgetView.extend({
51
66
} ;
52
67
return ws ;
53
68
}
54
-
55
69
} ) ;
56
70
57
71
mpl . figure . prototype . handle_close = function ( fig , msg ) {
@@ -87,7 +101,7 @@ mpl.figure.prototype._init_toolbar = function() {
87
101
return fig . toolbar_button_onmouseover ( event [ 'data' ] ) ;
88
102
}
89
103
90
- for ( var toolbar_ind in mpl . toolbar_items ) {
104
+ for ( var toolbar_ind in mpl . toolbar_items ) {
91
105
var name = mpl . toolbar_items [ toolbar_ind ] [ 0 ] ;
92
106
var tooltip = mpl . toolbar_items [ toolbar_ind ] [ 1 ] ;
93
107
var image = mpl . toolbar_items [ toolbar_ind ] [ 2 ] ;
@@ -116,14 +130,14 @@ mpl.figure.prototype._init_toolbar = function() {
116
130
titlebar . prepend ( buttongrp ) ;
117
131
}
118
132
119
- mpl . figure . prototype . _root_extra_style = function ( el ) {
133
+ mpl . figure . prototype . _root_extra_style = function ( el ) {
120
134
var fig = this
121
135
el . on ( "remove" , function ( ) {
122
- fig . close_ws ( fig , { } ) ;
136
+ fig . close_ws ( fig , { } ) ;
123
137
} ) ;
124
138
}
125
139
126
- mpl . figure . prototype . _canvas_extra_style = function ( el ) {
140
+ mpl . figure . prototype . _canvas_extra_style = function ( el ) {
127
141
// this is important to make the div 'focusable'
128
142
el . attr ( 'tabindex' , 0 )
129
143
}
@@ -136,5 +150,6 @@ mpl.figure.prototype.handle_save = function(fig, msg) {
136
150
}
137
151
138
152
module . exports = {
153
+ MPLCanvasModel : MPLCanvasModel ,
139
154
MPLCanvasView : MPLCanvasView
140
155
}
0 commit comments