fix margins of static icon lists

This commit is contained in:
rlx 2011-10-08 17:19:18 +00:00
commit 2698bec700
5 changed files with 24 additions and 14 deletions

View file

@ -80,7 +80,7 @@ Ox = {
function loadScript(script, callback) {
var element = document.createElement('script');
element.onload = callback;
element.src = path + script + '?' + parseInt(Math.random(1000000));
element.src = path + script + '?' + parseInt(Math.random() * 1000000);
element.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(element);
}