Skip to content

Instantly share code, notes, and snippets.

@randombrad
Created August 11, 2011 17:10
Show Gist options
  • Save randombrad/1140201 to your computer and use it in GitHub Desktop.
Save randombrad/1140201 to your computer and use it in GitHub Desktop.
Change Default Drop Zone For Entire Theme
AUI().ready(
function(A) {
A.Do.before(function(option) {
if (!option.placeHolder) {
option.placeHolder = A.Node.create('<div class="loading-animation"></div>');
}
option.placeHolder.prependTo('TARGETED-COLUMN-ID');
}, Liferay.Portlet, 'add', Liferay.Portlet);
}
);
@nguyenj
Copy link

nguyenj commented Jun 20, 2013

This is great. Thanks for the snippet!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment