File tree 2 files changed +3
-9
lines changed
2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -522,17 +522,16 @@ class Scatter(Mark):
522
522
update_on_move = Bool (False , sync = True )
523
523
524
524
def __init__ (self , ** kwargs ):
525
- super (Scatter , self ).__init__ (** kwargs )
526
525
self ._drag_end_handlers = CallbackDispatcher ()
527
- self . on_msg ( self . _handle_custom_msgs )
526
+ super ( Scatter , self ). __init__ ( ** kwargs )
528
527
529
528
def on_drag_end (self , callback , remove = False ):
530
529
self ._drag_end_handlers .register_callback (callback , remove = remove )
531
530
532
531
def _handle_custom_msgs (self , _ , content , buffers = None ):
533
- super (Scatter , self )._handle_custom_msgs (self , content )
534
532
if content .get ('event' , '' ) == 'drag_end' :
535
533
self ._drag_end_handlers (self , content )
534
+ super (Scatter , self )._handle_custom_msgs (self , content )
536
535
537
536
_view_name = Unicode ('Scatter' , sync = True )
538
537
_view_module = Unicode ('nbextensions/bqplot/Scatter' , sync = True )
Original file line number Diff line number Diff line change 42
42
'sphinx.ext.autosummary' ,
43
43
'sphinx.ext.viewcode' ,
44
44
'sphinx.ext.napoleon' ,
45
- # 'numpydoc',
46
45
]
47
46
48
47
autosummary_generate = True
49
- # numpydoc_show_class_members = False
50
- #autodoc_default_flags = ['members', 'no-inherited-members', 'show-inheritance']
51
48
52
49
# Add any paths that contain templates here, relative to this directory.
53
50
templates_path = ['_templates' ]
54
51
55
52
# The suffix(es) of source filenames.
56
- # You can specify multiple suffix as a list of string:
57
- # source_suffix = ['.rst', '.md']
58
53
source_suffix = '.rst'
59
54
60
55
# Add dev disclaimer.
76
71
# General information about the project.
77
72
project = u'bqplot'
78
73
copyright = u'2015, Bloomberg LP'
79
- author = u'The BQplot Development Team'
74
+ author = u'The BQplot Development Team'
80
75
81
76
# The version info for the project you're documenting, acts as replacement for
82
77
# |version| and |release|, also used in various other places throughout the
You can’t perform that action at this time.
0 commit comments