BUGFIX: check before shifting classes array in AvailableWidgets

BUGFIX: solved bug adding a new widget to the top of the widget area, then moving it to the bottom when saving
This commit is contained in:
g4b0 2013-03-29 15:50:20 +01:00 committed by g4b0
parent 0177699620
commit 05ade5866b
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class WidgetAreaEditor extends FormField {
foreach($this->widgetClasses as $widgetClass) {
$classes = ClassInfo::subclassesFor($widgetClass);
array_shift($classes);
if(count($classes) > 1) array_shift($classes);
foreach($classes as $class) {
$widgets->push(singleton($class));
}

View File

@ -132,7 +132,7 @@
$(this).data('maxid', newID);
var widgetContent = response.replace(/Widget\[0\]/gi, "Widget[new-" + (newID) + "]");
$('#usedWidgets-'+$(this).attr('name')).prepend(widgetContent);
$('#usedWidgets-'+$(this).attr('name')).append(widgetContent);
this.rewriteWidgetAreaAttributes();
},