button.js
59 lines
| 1.9 KiB
| application/javascript
|
JavascriptLexer
Jonathan Frederic
|
r14366 | //---------------------------------------------------------------------------- | ||
// Copyright (C) 2013 The IPython Development Team | ||||
// | ||||
// Distributed under the terms of the BSD License. The full license is in | ||||
// the file COPYING, distributed as part of this software. | ||||
//---------------------------------------------------------------------------- | ||||
//============================================================================ | ||||
// ButtonWidget | ||||
//============================================================================ | ||||
/** | ||||
* @module IPython | ||||
* @namespace IPython | ||||
**/ | ||||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14374 | define(["notebook/js/widget"], function(widget_manager){ | ||
Jonathan Frederic
|
r14270 | |||
var ButtonWidgetModel = IPython.WidgetModel.extend({}); | ||||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_model('ButtonWidgetModel', ButtonWidgetModel); | ||
Jonathan Frederic
|
r14270 | |||
var ButtonView = IPython.WidgetView.extend({ | ||||
// Called when view is rendered. | ||||
render : function(){ | ||||
var that = this; | ||||
Jonathan Frederic
|
r14397 | this.setElement($("<button />") | ||
Jonathan Frederic
|
r14400 | .addClass('btn')); | ||
Jonathan Frederic
|
r14270 | |||
this.update(); // Set defaults. | ||||
}, | ||||
// Handles: Backend -> Frontend Sync | ||||
// Frontent -> Frontend Sync | ||||
update : function(){ | ||||
Jonathan Frederic
|
r14292 | var description = this.model.get('description'); | ||
Jonathan Frederic
|
r14369 | description = description.replace(/ /g, ' ', 'm'); | ||
description = description.replace(/\n/g, '<br>\n', 'm'); | ||||
Jonathan Frederic
|
r14367 | if (description.length == 0) { | ||
this.$el.html(' '); // Preserve button height | ||||
Jonathan Frederic
|
r14292 | } else { | ||
Jonathan Frederic
|
r14368 | this.$el.html(description); | ||
Jonathan Frederic
|
r14292 | } | ||
Jonathan Frederic
|
r14279 | return IPython.WidgetView.prototype.update.call(this); | ||
Jonathan Frederic
|
r14270 | }, | ||
Jonathan Frederic
|
r14400 | |||
events: { | ||||
'click': '_handle_click', | ||||
}, | ||||
Jonathan Frederic
|
r14270 | |||
Jonathan Frederic
|
r14400 | _handle_click: function(){ | ||
Jonathan Frederic
|
r14403 | this.send({event: 'click'}); | ||
Jonathan Frederic
|
r14400 | }, | ||
Jonathan Frederic
|
r14270 | }); | ||
Jonathan Frederic
|
r14374 | widget_manager.register_widget_view('ButtonView', ButtonView); | ||
Jonathan Frederic
|
r14270 | |||
}); | ||||