File tree Expand file tree Collapse file tree 2 files changed +0
-18
lines changed
ipywidgets/static/widgets/js Expand file tree Collapse file tree 2 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -180,14 +180,6 @@ define([
180
180
}
181
181
}
182
182
} ;
183
-
184
- /**
185
- * Deprecated, use `new_widget` instead.
186
- */
187
- WidgetManager . prototype . create_model = function ( options ) {
188
- console . warn ( 'WidgetManager.create_model is deprecated. Use ManagerBase.new_widget' ) ;
189
- return this . new_widget ( options ) ;
190
- } ;
191
183
192
184
WidgetManager . prototype . display_model = function ( msg , model , options ) {
193
185
options = options || { } ;
Original file line number Diff line number Diff line change @@ -534,16 +534,6 @@ define(["nbextensions/widgets/widgets/js/utils",
534
534
this . model . save_changes ( this . callbacks ( ) ) ;
535
535
} ,
536
536
537
- after_displayed : function ( callback , context ) {
538
- /**
539
- * Deprecated method. Calls the callback right away is the view is
540
- * already displayed otherwise, register the callback to the 'displayed'
541
- * event.
542
- */
543
- console . log ( '`WidgetView.after_displayed` is deprecated. Use the WidgetView.displayed promise instead.' ) ;
544
- this . displayed . then ( _ . bind ( callback , context ) ) ;
545
- } ,
546
-
547
537
remove : function ( ) {
548
538
// Raise a remove event when the view is removed.
549
539
WidgetView . __super__ . remove . apply ( this , arguments ) ;
You can’t perform that action at this time.
0 commit comments