##// END OF EJS Templates
Use regular expressions when fixing button-like captions
Jonathan Frederic -
Show More
@@ -38,8 +38,8 define(["notebook/js/widget"], function(){
38 38 // Frontent -> Frontend Sync
39 39 update : function(){
40 40 var description = this.model.get('description');
41 description = description.replace(' ', ' ');
42 description = description.replace('\n', '<br>\n');
41 description = description.replace(/ /g, '&nbsp;', 'm');
42 description = description.replace(/\n/g, '<br>\n', 'm');
43 43 if (description.length == 0) {
44 44 this.$el.html('&nbsp;'); // Preserve button height
45 45 } else {
@@ -60,8 +60,8 define(["notebook/js/widget"], function(){
60 60 update : function(){
61 61
62 62 var selected_item_text = this.model.get('value');
63 selected_item_text = selected_item_text.replace(' ', '&nbsp;');
64 selected_item_text = selected_item_text.replace('\n', '<br>\n');
63 selected_item_text = selected_item_text.replace(/ /g, '&nbsp;');
64 selected_item_text = selected_item_text.replace(/\n/g, '<br>\n');
65 65 if (selected_item_text.length == 0) {
66 66 this.$droplabel.html('&nbsp;');
67 67 } else {
General Comments 0
You need to be logged in to leave comments. Login now