widget.js
496 lines
| 17.9 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r17198 | // Copyright (c) IPython Development Team. | ||
// Distributed under the terms of the Modified BSD License. | ||||
Jonathan Frederic
|
r14546 | |||
Jonathan Frederic
|
r15427 | define(["widgets/js/manager", | ||
Jonathan Frederic
|
r14546 | "underscore", | ||
Jonathan Frederic
|
r17216 | "backbone", | ||
"jquery", | ||||
"base/js/namespace", | ||||
], function(widgetmanager, _, Backbone, $, IPython){ | ||||
Jonathan Frederic
|
r14609 | |||
Jonathan Frederic
|
r14546 | var WidgetModel = Backbone.Model.extend({ | ||
constructor: function (widget_manager, model_id, comm) { | ||||
MinRK
|
r14792 | // Constructor | ||
Jonathan Frederic
|
r14561 | // | ||
// Creates a WidgetModel instance. | ||||
// | ||||
// Parameters | ||||
// ---------- | ||||
// widget_manager : WidgetManager instance | ||||
// model_id : string | ||||
// An ID unique to this model. | ||||
// comm : Comm instance (optional) | ||||
Jonathan Frederic
|
r14546 | this.widget_manager = widget_manager; | ||
Jonathan Frederic
|
r15280 | this._buffered_state_diff = {}; | ||
Jonathan Frederic
|
r14546 | this.pending_msgs = 0; | ||
this.msg_buffer = null; | ||||
sylvain.corlay
|
r17839 | this.state_lock = null; | ||
Jonathan Frederic
|
r14546 | this.id = model_id; | ||
this.views = []; | ||||
if (comm !== undefined) { | ||||
// Remember comm associated with the model. | ||||
this.comm = comm; | ||||
comm.model = this; | ||||
// Hook comm messages up to model. | ||||
comm.on_close($.proxy(this._handle_comm_closed, this)); | ||||
comm.on_msg($.proxy(this._handle_comm_msg, this)); | ||||
} | ||||
return Backbone.Model.apply(this); | ||||
}, | ||||
send: function (content, callbacks) { | ||||
Jonathan Frederic
|
r14609 | // Send a custom msg over the comm. | ||
Jonathan Frederic
|
r14546 | if (this.comm !== undefined) { | ||
Jonathan Frederic
|
r14655 | var data = {method: 'custom', content: content}; | ||
Jonathan Frederic
|
r14546 | this.comm.send(data, callbacks); | ||
Jonathan Frederic
|
r14741 | this.pending_msgs++; | ||
Jonathan Frederic
|
r14546 | } | ||
}, | ||||
_handle_comm_closed: function (msg) { | ||||
Jonathan Frederic
|
r14609 | // Handle when a widget is closed. | ||
Jonathan Frederic
|
r14546 | this.trigger('comm:close'); | ||
delete this.comm.model; // Delete ref so GC will collect widget model. | ||||
delete this.comm; | ||||
delete this.model_id; // Delete id from model so widget manager cleans up. | ||||
Jonathan Frederic
|
r14704 | _.each(this.views, function(view, i) { | ||
view.remove(); | ||||
}); | ||||
Jonathan Frederic
|
r14546 | }, | ||
_handle_comm_msg: function (msg) { | ||||
Jonathan Frederic
|
r14609 | // Handle incoming comm msg. | ||
Jonathan Frederic
|
r14546 | var method = msg.content.data.method; | ||
switch (method) { | ||||
case 'update': | ||||
this.apply_update(msg.content.data.state); | ||||
break; | ||||
case 'custom': | ||||
Jonathan Frederic
|
r14655 | this.trigger('msg:custom', msg.content.data.content); | ||
Jonathan Frederic
|
r14546 | break; | ||
Jonathan Frederic
|
r14559 | case 'display': | ||
Jason Grout
|
r14620 | this.widget_manager.display_view(msg, this); | ||
Jonathan Frederic
|
r14559 | break; | ||
Jonathan Frederic
|
r14546 | } | ||
}, | ||||
apply_update: function (state) { | ||||
Jonathan Frederic
|
r14609 | // Handle when a widget is updated via the python side. | ||
sylvain.corlay
|
r17839 | this.state_lock = state; | ||
try { | ||||
var that = this; | ||||
WidgetModel.__super__.set.apply(this, [Object.keys(state).reduce(function(obj, key) { | ||||
obj[key] = that._unpack_models(state[key]); | ||||
return obj; | ||||
}, {})]); | ||||
} finally { | ||||
this.state_lock = null; | ||||
} | ||||
Jonathan Frederic
|
r14546 | }, | ||
_handle_status: function (msg, callbacks) { | ||||
Jonathan Frederic
|
r14609 | // Handle status msgs. | ||
// execution_state : ('busy', 'idle', 'starting') | ||||
Jonathan Frederic
|
r14596 | if (this.comm !== undefined) { | ||
if (msg.content.execution_state ==='idle') { | ||||
// Send buffer if this message caused another message to be | ||||
// throttled. | ||||
if (this.msg_buffer !== null && | ||||
Jonathan Frederic
|
r15369 | (this.get('msg_throttle') || 3) === this.pending_msgs) { | ||
Jonathan Frederic
|
r14596 | var data = {method: 'backbone', sync_method: 'update', sync_data: this.msg_buffer}; | ||
MinRK
|
r14792 | this.comm.send(data, callbacks); | ||
Jonathan Frederic
|
r14596 | this.msg_buffer = null; | ||
} else { | ||||
--this.pending_msgs; | ||||
} | ||||
Jonathan Frederic
|
r14546 | } | ||
} | ||||
}, | ||||
Jonathan Frederic
|
r14640 | callbacks: function(view) { | ||
Jason Grout
|
r14639 | // Create msg callbacks for a comm msg. | ||
Jonathan Frederic
|
r14640 | var callbacks = this.widget_manager.callbacks(view); | ||
if (callbacks.iopub === undefined) { | ||||
callbacks.iopub = {}; | ||||
} | ||||
Jason Grout
|
r14639 | var that = this; | ||
callbacks.iopub.status = function (msg) { | ||||
that._handle_status(msg, callbacks); | ||||
MinRK
|
r14792 | }; | ||
Jason Grout
|
r14639 | return callbacks; | ||
}, | ||||
Jonathan Frederic
|
r14546 | |||
Jonathan Frederic
|
r15279 | set: function(key, val, options) { | ||
// Set a value. | ||||
Jonathan Frederic
|
r15280 | var return_value = WidgetModel.__super__.set.apply(this, arguments); | ||
// Backbone only remembers the diff of the most recent set() | ||||
Jonathan Frederic
|
r15281 | // operation. Calling set multiple times in a row results in a | ||
Jonathan Frederic
|
r15280 | // loss of diff information. Here we keep our own running diff. | ||
this._buffered_state_diff = $.extend(this._buffered_state_diff, this.changedAttributes() || {}); | ||||
return return_value; | ||||
Jonathan Frederic
|
r15279 | }, | ||
Jason Grout
|
r14639 | sync: function (method, model, options) { | ||
Jonathan Frederic
|
r14668 | // Handle sync to the back-end. Called when a model.save() is called. | ||
Jonathan Frederic
|
r14640 | |||
// Make sure a comm exists. | ||||
var error = options.error || function() { | ||||
console.error('Backbone sync error:', arguments); | ||||
MinRK
|
r14792 | }; | ||
Jason Grout
|
r14639 | if (this.comm === undefined) { | ||
error(); | ||||
return false; | ||||
} | ||||
Jonathan Frederic
|
r14640 | // Delete any key value pairs that the back-end already knows about. | ||
Jonathan Frederic
|
r15274 | var attrs = (method === 'patch') ? options.attrs : model.toJSON(options); | ||
sylvain.corlay
|
r17839 | if (this.state_lock !== null) { | ||
var keys = Object.keys(this.state_lock); | ||||
for (var i=0; i<keys.length; i++) | ||||
var key = keys[i]; | ||||
if (attrs[key] === this.state_lock[key]) { | ||||
delete attrs[key]; | ||||
} | ||||
Jason Grout
|
r14639 | } | ||
Jonathan Frederic
|
r14640 | // Only sync if there are attributes to send to the back-end. | ||
Jonathan Frederic
|
r15279 | attrs = this._pack_models(attrs); | ||
Jonathan Frederic
|
r14686 | if (_.size(attrs) > 0) { | ||
Jonathan Frederic
|
r14741 | |||
// If this message was sent via backbone itself, it will not | ||||
// have any callbacks. It's important that we create callbacks | ||||
// so we can listen for status messages, etc... | ||||
var callbacks = options.callbacks || this.callbacks(); | ||||
// Check throttle. | ||||
Jonathan Frederic
|
r15369 | if (this.pending_msgs >= (this.get('msg_throttle') || 3)) { | ||
Jonathan Frederic
|
r14640 | // The throttle has been exceeded, buffer the current msg so | ||
// it can be sent once the kernel has finished processing | ||||
// some of the existing messages. | ||||
// Combine updates if it is a 'patch' sync, otherwise replace updates | ||||
switch (method) { | ||||
case 'patch': | ||||
Jonathan Frederic
|
r14662 | this.msg_buffer = $.extend(this.msg_buffer || {}, attrs); | ||
Jonathan Frederic
|
r14640 | break; | ||
case 'update': | ||||
Jonathan Frederic
|
r14661 | case 'create': | ||
Jonathan Frederic
|
r14640 | this.msg_buffer = attrs; | ||
break; | ||||
default: | ||||
error(); | ||||
return false; | ||||
} | ||||
this.msg_buffer_callbacks = callbacks; | ||||
} else { | ||||
// We haven't exceeded the throttle, send the message like | ||||
Jonathan Frederic
|
r14741 | // normal. | ||
Jonathan Frederic
|
r14640 | var data = {method: 'backbone', sync_data: attrs}; | ||
this.comm.send(data, callbacks); | ||||
this.pending_msgs++; | ||||
} | ||||
Jonathan Frederic
|
r14546 | } | ||
// Since the comm is a one-way communication, assume the message | ||||
Jason Grout
|
r14639 | // arrived. Don't call success since we don't have a model back from the server | ||
// this means we miss out on the 'sync' event. | ||||
Jonathan Frederic
|
r15280 | this._buffered_state_diff = {}; | ||
Jonathan Frederic
|
r14546 | }, | ||
Jason Grout
|
r14639 | save_changes: function(callbacks) { | ||
Jonathan Frederic
|
r14651 | // Push this model's state to the back-end | ||
// | ||||
// This invokes a Backbone.Sync. | ||||
Jonathan Frederic
|
r15280 | this.save(this._buffered_state_diff, {patch: true, callbacks: callbacks}); | ||
Jason Grout
|
r14618 | }, | ||
Jonathan Frederic
|
r14583 | _pack_models: function(value) { | ||
Jonathan Frederic
|
r14609 | // Replace models with model ids recursively. | ||
Jonathan Frederic
|
r17199 | var that = this; | ||
var packed; | ||||
Jonathan Frederic
|
r14583 | if (value instanceof Backbone.Model) { | ||
Jason Grout
|
r17262 | return "IPY_MODEL_" + value.id; | ||
Jonathan Frederic
|
r15063 | |||
} else if ($.isArray(value)) { | ||||
Jonathan Frederic
|
r17199 | packed = []; | ||
Jonathan Frederic
|
r15063 | _.each(value, function(sub_value, key) { | ||
packed.push(that._pack_models(sub_value)); | ||||
}); | ||||
return packed; | ||||
Jonathan Frederic
|
r14583 | } else if (value instanceof Object) { | ||
Jonathan Frederic
|
r17199 | packed = {}; | ||
Jonathan Frederic
|
r14664 | _.each(value, function(sub_value, key) { | ||
Jonathan Frederic
|
r14686 | packed[key] = that._pack_models(sub_value); | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14583 | return packed; | ||
Jonathan Frederic
|
r15063 | |||
Jonathan Frederic
|
r14583 | } else { | ||
return value; | ||||
} | ||||
}, | ||||
_unpack_models: function(value) { | ||||
Jonathan Frederic
|
r14609 | // Replace model ids with models recursively. | ||
Jonathan Frederic
|
r17198 | var that = this; | ||
var unpacked; | ||||
Jonathan Frederic
|
r15063 | if ($.isArray(value)) { | ||
Jonathan Frederic
|
r17198 | unpacked = []; | ||
Jonathan Frederic
|
r15063 | _.each(value, function(sub_value, key) { | ||
unpacked.push(that._unpack_models(sub_value)); | ||||
}); | ||||
return unpacked; | ||||
} else if (value instanceof Object) { | ||||
Jonathan Frederic
|
r17198 | unpacked = {}; | ||
Jonathan Frederic
|
r14664 | _.each(value, function(sub_value, key) { | ||
Jonathan Frederic
|
r14686 | unpacked[key] = that._unpack_models(sub_value); | ||
Jonathan Frederic
|
r14664 | }); | ||
Jonathan Frederic
|
r14583 | return unpacked; | ||
Jonathan Frederic
|
r15063 | |||
Jason Grout
|
r17262 | } else if (typeof value === 'string' && value.slice(0,10) === "IPY_MODEL_") { | ||
var model = this.widget_manager.get_model(value.slice(10, value.length)); | ||||
if (model) { | ||||
return model; | ||||
} else { | ||||
return value; | ||||
} | ||||
Jonathan Frederic
|
r14583 | } else { | ||
return value; | ||||
} | ||||
}, | ||||
sylvain.corlay
|
r17838 | on_bulk_change: function(keys, callback, context) { | ||
this.on('change', function() { | ||||
if (keys.some(this.hasChanged, this)) { | ||||
callback.apply(context); | ||||
} | ||||
}, this); | ||||
}, | ||||
Jonathan Frederic
|
r14546 | }); | ||
Jonathan Frederic
|
r17202 | widgetmanager.WidgetManager.register_widget_model('WidgetModel', WidgetModel); | ||
Jonathan Frederic
|
r14546 | |||
Jonathan Frederic
|
r14564 | var WidgetView = Backbone.View.extend({ | ||
Jonathan Frederic
|
r14565 | initialize: function(parameters) { | ||
Jonathan Frederic
|
r14609 | // Public constructor. | ||
Jonathan Frederic
|
r14546 | this.model.on('change',this.update,this); | ||
Jonathan Frederic
|
r14565 | this.options = parameters.options; | ||
Jonathan Frederic
|
r17172 | this.child_model_views = {}; | ||
this.child_views = {}; | ||||
Jonathan Frederic
|
r14546 | this.model.views.push(this); | ||
Jonathan Frederic
|
r17175 | this.id = this.id || IPython.utils.uuid(); | ||
Sylvain Corlay
|
r17270 | this.on('displayed', function() { | ||
this.is_displayed = true; | ||||
}, this); | ||||
Jonathan Frederic
|
r14546 | }, | ||
update: function(){ | ||||
Jonathan Frederic
|
r14609 | // Triggered on model change. | ||
// | ||||
// Update view to be consistent with this.model | ||||
Jonathan Frederic
|
r14546 | }, | ||
Jonathan Frederic
|
r14598 | create_child_view: function(child_model, options) { | ||
Jonathan Frederic
|
r14609 | // Create and return a child view. | ||
// | ||||
Jason Grout
|
r14617 | // -given a model and (optionally) a view name if the view name is | ||
Jonathan Frederic
|
r14609 | // not given, it defaults to the model's default view attribute. | ||
Jonathan Frederic
|
r14651 | |||
Jason Grout
|
r14617 | // TODO: this is hacky, and makes the view depend on this cell attribute and widget manager behavior | ||
Jonathan Frederic
|
r14651 | // it would be great to have the widget manager add the cell metadata | ||
// to the subview without having to add it here. | ||||
Jonathan Frederic
|
r17180 | options = $.extend({ parent: this }, options || {}); | ||
Jonathan Frederic
|
r17178 | var child_view = this.model.widget_manager.create_view(child_model, options, this); | ||
Jonathan Frederic
|
r17172 | |||
// Associate the view id with the model id. | ||||
if (this.child_model_views[child_model.id] === undefined) { | ||||
this.child_model_views[child_model.id] = []; | ||||
} | ||||
this.child_model_views[child_model.id].push(child_view.id); | ||||
// Remember the view by id. | ||||
this.child_views[child_view.id] = child_view; | ||||
Jonathan Frederic
|
r14546 | return child_view; | ||
}, | ||||
Jonathan Frederic
|
r14598 | |||
Jonathan Frederic
|
r17178 | pop_child_view: function(child_model) { | ||
Jonathan Frederic
|
r14609 | // Delete a child view that was previously created using create_child_view. | ||
Jonathan Frederic
|
r17172 | var view_ids = this.child_model_views[child_model.id]; | ||
if (view_ids !== undefined) { | ||||
Jonathan Frederic
|
r17173 | // Only delete the first view in the list. | ||
var view_id = view_ids[0]; | ||||
var view = this.child_views[view_id]; | ||||
delete this.child_views[view_id]; | ||||
Jonathan Frederic
|
r17175 | view_ids.splice(0,1); | ||
Jonathan Frederic
|
r17173 | child_model.views.pop(view); | ||
// Remove the view list specific to this model if it is empty. | ||||
if (view_ids.length === 0) { | ||||
delete this.child_model_views[child_model.id]; | ||||
Jonathan Frederic
|
r17172 | } | ||
Jonathan Frederic
|
r17173 | return view; | ||
Jonathan Frederic
|
r14667 | } | ||
Jonathan Frederic
|
r17173 | return null; | ||
Jonathan Frederic
|
r14546 | }, | ||
Jonathan Frederic
|
r17176 | do_diff: function(old_list, new_list, removed_callback, added_callback) { | ||
Jonathan Frederic
|
r14580 | // Difference a changed list and call remove and add callbacks for | ||
// each removed and added item in the new list. | ||||
// | ||||
// Parameters | ||||
// ---------- | ||||
// old_list : array | ||||
// new_list : array | ||||
// removed_callback : Callback(item) | ||||
// Callback that is called for each item removed. | ||||
// added_callback : Callback(item) | ||||
// Callback that is called for each item added. | ||||
Jonathan Frederic
|
r17176 | // Walk the lists until an unequal entry is found. | ||
var i; | ||||
for (i = 0; i < new_list.length; i++) { | ||||
Sylvain Corlay
|
r17289 | if (i >= old_list.length || new_list[i] !== old_list[i]) { | ||
Jonathan Frederic
|
r17176 | break; | ||
Jonathan Frederic
|
r17174 | } | ||
Jonathan Frederic
|
r17176 | } | ||
Jonathan Frederic
|
r14580 | |||
Jonathan Frederic
|
r17176 | // Remove the non-matching items from the old list. | ||
for (var j = i; j < old_list.length; j++) { | ||||
removed_callback(old_list[j]); | ||||
Jonathan Frederic
|
r17174 | } | ||
Jonathan Frederic
|
r14580 | |||
Jonathan Frederic
|
r17176 | // Add the rest of the new list items. | ||
Sylvain Corlay
|
r17327 | for (; i < new_list.length; i++) { | ||
Jonathan Frederic
|
r17176 | added_callback(new_list[i]); | ||
Jonathan Frederic
|
r17172 | } | ||
}, | ||||
Jonathan Frederic
|
r14546 | callbacks: function(){ | ||
Jonathan Frederic
|
r14609 | // Create msg callbacks for a comm msg. | ||
Jonathan Frederic
|
r14640 | return this.model.callbacks(this); | ||
Jonathan Frederic
|
r14560 | }, | ||
Jonathan Frederic
|
r14546 | |||
render: function(){ | ||||
Jonathan Frederic
|
r14609 | // Render the view. | ||
// | ||||
// By default, this is only called the first time the view is created | ||||
Jonathan Frederic
|
r14546 | }, | ||
Jonathan Frederic
|
r14609 | |||
Sylvain Corlay
|
r17227 | show: function(){ | ||
// Show the widget-area | ||||
if (this.options && this.options.cell && | ||||
this.options.cell.widget_area !== undefined) { | ||||
this.options.cell.widget_area.show(); | ||||
} | ||||
}, | ||||
Jonathan Frederic
|
r14546 | send: function (content) { | ||
Jonathan Frederic
|
r14609 | // Send a custom msg associated with this view. | ||
Jonathan Frederic
|
r14546 | this.model.send(content, this.callbacks()); | ||
}, | ||||
touch: function () { | ||||
Jason Grout
|
r14639 | this.model.save_changes(this.callbacks()); | ||
Jonathan Frederic
|
r14546 | }, | ||
Sylvain Corlay
|
r17270 | |||
Sylvain Corlay
|
r17329 | after_displayed: function (callback, context) { | ||
Sylvain Corlay
|
r17270 | // Calls the callback right away is the view is already displayed | ||
// otherwise, register the callback to the 'displayed' event. | ||||
if (this.is_displayed) { | ||||
callback.apply(context); | ||||
} else { | ||||
this.on('displayed', callback, context); | ||||
} | ||||
}, | ||||
Jonathan Frederic
|
r14546 | }); | ||
Jonathan Frederic
|
r14609 | |||
Jonathan Frederic
|
r14564 | var DOMWidgetView = WidgetView.extend({ | ||
Sylvain Corlay
|
r17448 | initialize: function (parameters) { | ||
Jonathan Frederic
|
r14609 | // Public constructor | ||
Sylvain Corlay
|
r17448 | DOMWidgetView.__super__.initialize.apply(this, [parameters]); | ||
Sylvain Corlay
|
r17227 | this.on('displayed', this.show, this); | ||
Sylvain Corlay
|
r17386 | this.after_displayed(function() { | ||
this.update_visible(this.model, this.model.get("visible")); | ||||
this.update_css(this.model, this.model.get("_css")); | ||||
}, this); | ||||
sylvain.corlay
|
r17347 | this.model.on('msg:custom', this.on_msg, this); | ||
this.model.on('change:visible', this.update_visible, this); | ||||
this.model.on('change:_css', this.update_css, this); | ||||
Jonathan Frederic
|
r14546 | }, | ||
Sylvain Corlay
|
r17386 | |||
Jonathan Frederic
|
r14546 | on_msg: function(msg) { | ||
Jonathan Frederic
|
r14609 | // Handle DOM specific msgs. | ||
Jonathan Frederic
|
r14546 | switch(msg.msg_type) { | ||
case 'add_class': | ||||
this.add_class(msg.selector, msg.class_list); | ||||
break; | ||||
case 'remove_class': | ||||
this.remove_class(msg.selector, msg.class_list); | ||||
break; | ||||
} | ||||
}, | ||||
add_class: function (selector, class_list) { | ||||
Jonathan Frederic
|
r14609 | // Add a DOM class to an element. | ||
Jonathan Frederic
|
r14567 | this._get_selector_element(selector).addClass(class_list); | ||
Jonathan Frederic
|
r14546 | }, | ||
Sylvain Corlay
|
r17386 | |||
Jonathan Frederic
|
r14546 | remove_class: function (selector, class_list) { | ||
Jonathan Frederic
|
r14609 | // Remove a DOM class from an element. | ||
Jonathan Frederic
|
r14567 | this._get_selector_element(selector).removeClass(class_list); | ||
Jonathan Frederic
|
r14546 | }, | ||
Sylvain Corlay
|
r17386 | |||
sylvain.corlay
|
r17347 | update_visible: function(model, value) { | ||
// Update visibility | ||||
Sylvain Corlay
|
r17386 | this.$el.toggle(value); | ||
sylvain.corlay
|
r17347 | }, | ||
update_css: function (model, css) { | ||||
sylvain.corlay
|
r17353 | // Update the css styling of this view. | ||
Jonathan Frederic
|
r14546 | var e = this.$el; | ||
if (css === undefined) {return;} | ||||
Jonathan Frederic
|
r17177 | for (var i = 0; i < css.length; i++) { | ||
Jonathan Frederic
|
r14664 | // Apply the css traits to all elements that match the selector. | ||
Jonathan Frederic
|
r17177 | var selector = css[i][0]; | ||
var elements = this._get_selector_element(selector); | ||||
Jonathan Frederic
|
r14664 | if (elements.length > 0) { | ||
Jonathan Frederic
|
r17177 | var trait_key = css[i][1]; | ||
var trait_value = css[i][2]; | ||||
elements.css(trait_key ,trait_value); | ||||
Jonathan Frederic
|
r14546 | } | ||
Jonathan Frederic
|
r17177 | } | ||
Jonathan Frederic
|
r14546 | }, | ||
_get_selector_element: function (selector) { | ||||
MinRK
|
r14792 | // Get the elements via the css selector. | ||
Jonathan Frederic
|
r14546 | var elements; | ||
MinRK
|
r14792 | if (!selector) { | ||
Jason Grout
|
r17420 | elements = this.$el; | ||
Jonathan Frederic
|
r14546 | } else { | ||
Jason Grout
|
r17420 | elements = this.$el.find(selector).addBack(selector); | ||
Jonathan Frederic
|
r14546 | } | ||
return elements; | ||||
}, | ||||
}); | ||||
Jonathan Frederic
|
r17216 | var widget = { | ||
Jonathan Frederic
|
r17198 | 'WidgetModel': WidgetModel, | ||
'WidgetView': WidgetView, | ||||
'DOMWidgetView': DOMWidgetView, | ||||
}; | ||||
Jonathan Frederic
|
r17216 | |||
// For backwards compatability. | ||||
$.extend(IPython, widget); | ||||
return widget; | ||||
Jonathan Frederic
|
r14546 | }); | ||