##// END OF EJS Templates
Added support for multiple spaces in a row...
Added support for multiple spaces in a row also added button height fix for standard buttons without a caption

File last commit:

r14367:1f4d1359
r14367:1f4d1359
Show More
button.js
55 lines | 1.8 KiB | application/javascript | JavascriptLexer
Jonathan Frederic
Added standard IPY JS header to widget JS files.
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
Add button widget
r14270
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 define(["notebook/js/widget"], function(){
Jonathan Frederic
Add button widget
r14270
var ButtonWidgetModel = IPython.WidgetModel.extend({});
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 IPython.widget_manager.register_widget_model('ButtonWidgetModel', ButtonWidgetModel);
Jonathan Frederic
Add button widget
r14270
var ButtonView = IPython.WidgetView.extend({
// Called when view is rendered.
render : function(){
var that = this;
this.$el = $("<button />")
.addClass('btn')
.click(function() {
Jonathan Frederic
Fixed button widget click event handler/
r14272 that.model.set('clicks', that.model.get('clicks') + 1);
Jonathan Frederic
LOTS OF WIDGET CHANGES...
r14278 that.model.update_other_views(that);
Jonathan Frederic
Add button widget
r14270 });
this.update(); // Set defaults.
},
// Handles: Backend -> Frontend Sync
// Frontent -> Frontend Sync
update : function(){
Jonathan Frederic
Added labels to basic widgets
r14292 var description = this.model.get('description');
Jonathan Frederic
Added support for multiple spaces in a row...
r14367 description.replace(' ', '&nbsp;')
if (description.length == 0) {
this.$el.html('&nbsp;'); // Preserve button height
Jonathan Frederic
Added labels to basic widgets
r14292 } else {
Jonathan Frederic
Added support for multiple spaces in a row...
r14367 this.$el.html(this.model.get('description'));
Jonathan Frederic
Added labels to basic widgets
r14292 }
Jonathan Frederic
Fixes that allow last commit to work.
r14279 return IPython.WidgetView.prototype.update.call(this);
Jonathan Frederic
Add button widget
r14270 },
});
Jonathan Frederic
Remove init_widget_js, use require.js for everything...
r14342 IPython.widget_manager.register_widget_view('ButtonView', ButtonView);
Jonathan Frederic
Add button widget
r14270
});