Merge pull request #46 from g4b0/append-widget-to-bottom

BUGFIX: solved bug adding a new widget to the top of the widget area, th...
This commit is contained in:
Michael Parkhill 2013-04-02 13:06:34 -07:00
commit 6167c701f3

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();
},