File tree 2 files changed +4
-4
lines changed
lib/matplotlib/backends/web_backend/js 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ mpl.get_websocket_type = function() {
8
8
} else if ( typeof ( MozWebSocket ) !== 'undefined' ) {
9
9
return MozWebSocket ;
10
10
} else {
11
- alert ( 'Your browser does not have WebSocket support.' +
11
+ alert ( 'Your browser does not have WebSocket support. ' +
12
12
'Please try Chrome, Safari or Firefox ≥ 6. ' +
13
13
'Firefox 4 and 5 are also supported but you ' +
14
14
'have to enable WebSockets in about:config.' ) ;
@@ -225,7 +225,7 @@ mpl.figure.prototype._init_canvas = function() {
225
225
mpl . figure . prototype . _init_toolbar = function ( ) {
226
226
var fig = this ;
227
227
228
- var nav_element = $ ( '<div/>' )
228
+ var nav_element = $ ( '<div/>' ) ;
229
229
nav_element . attr ( 'style' , 'width: 100%' ) ;
230
230
this . root . append ( nav_element ) ;
231
231
@@ -282,7 +282,7 @@ mpl.figure.prototype._init_toolbar = function() {
282
282
var fmt = mpl . extensions [ ind ] ;
283
283
var option = $ (
284
284
'<option/>' , { selected : fmt === mpl . default_extension } ) . html ( fmt ) ;
285
- fmt_picker . append ( option )
285
+ fmt_picker . append ( option ) ;
286
286
}
287
287
288
288
// Add hover states to the ui-buttons
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ mpl.figure.prototype.updated_canvas_event = function() {
93
93
mpl . figure . prototype . _init_toolbar = function ( ) {
94
94
var fig = this ;
95
95
96
- var nav_element = $ ( '<div/>' )
96
+ var nav_element = $ ( '<div/>' ) ;
97
97
nav_element . attr ( 'style' , 'width: 100%' ) ;
98
98
this . root . append ( nav_element ) ;
99
99
You can’t perform that action at this time.
0 commit comments