Changeset 3223:03c6788b5725 for plugins/widgets
- Timestamp:
- 03/15/16 12:29:55 (9 years ago)
- Branch:
- default
- Location:
- plugins/widgets
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/widgets/class.widgets.php
r3058 r3223 320 320 $res .= 321 321 '<p><label for="'.$wfid.'">'.$s['title'].'</label> '. 322 form::textarea(array($iname,$wfid),30, 5,html::escapeHTML($s['value']),'maximal').322 form::textarea(array($iname,$wfid),30,8,html::escapeHTML($s['value']),'maximal'). 323 323 '</p>'; 324 324 break; -
plugins/widgets/index.php
r3021 r3223 234 234 //]]> 235 235 </script> 236 <?php echo $core->callBehavior('adminPostEditor');?> 236 <?php 237 $widget_editor = $core->auth->getOption('editor'); 238 echo $core->callBehavior('adminPostEditor',$widget_editor['xhtml'],'widget',array('#sidebarsWidgets textarea'),'xhtml'); 239 ?> 237 240 <?php echo(dcPage::jsConfirmClose('sidebarsWidgets')); ?> 238 241 </head> -
plugins/widgets/widgets.js
r2563 r3223 126 126 reorder($this.parents('ul.connected')); 127 127 }); 128 129 // HTML text editor 130 if ($.isFunction(jsToolBar)) { 131 $('#sidebarsWidgets textarea').each(function() { 132 var tbWidgetText = new jsToolBar(this); 133 tbWidgetText.draw('xhtml'); 134 }); 135 } 136 128 137 });
Note: See TracChangeset
for help on using the changeset viewer.