//---------------------------------------------------------------------------- // 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. //---------------------------------------------------------------------------- //============================================================================ // StringWidget //============================================================================ /** * @module IPython * @namespace IPython **/ define(["notebook/js/widget"], function(widget_manager){ var StringWidgetModel = IPython.WidgetModel.extend({}); widget_manager.register_widget_model('StringWidgetModel', StringWidgetModel); var HTMLView = IPython.WidgetView.extend({ // Called when view is rendered. render : function(){ this.update(); // Set defaults. }, // Handles: Backend -> Frontend Sync // Frontent -> Frontend Sync update : function(){ this.$el.html(this.model.get('value')); return IPython.WidgetView.prototype.update.call(this); }, }); widget_manager.register_widget_view('HTMLView', HTMLView); var TextAreaView = IPython.WidgetView.extend({ // Called when view is rendered. render: function(){ this.$el .addClass('widget-hbox') .html(''); this.$label = $('
') .appendTo(this.$el) .addClass('widget-hlabel') .hide(); this.$textbox = $('