diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-05-23 18:10:51 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-23 18:10:51 +0200 |
commit | 3e3c070b31df956daf7dbe47a510733b22d2ceef (patch) | |
tree | 2a22f73c11e1a92465578314294744b8e8fdeeb2 /www/jsScuttle.php | |
parent | 2d2e7f97e43ec97884a032213952aed2deb6616d (diff) | |
download | semanticscuttle-3e3c070b31df956daf7dbe47a510733b22d2ceef.tar.gz semanticscuttle-3e3c070b31df956daf7dbe47a510733b22d2ceef.tar.bz2 |
move image and css files to theme folder
Diffstat (limited to 'www/jsScuttle.php')
-rw-r--r-- | www/jsScuttle.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/jsScuttle.php b/www/jsScuttle.php index c166755..4f9d3b7 100644 --- a/www/jsScuttle.php +++ b/www/jsScuttle.php @@ -62,7 +62,7 @@ function isAvailable(input, response){ username = username.trim(); var availability = document.getElementById("availability"); if (username != '') { - usernameField.style.backgroundImage = 'url(<?php echo ROOT; ?>images/loading.gif)'; + usernameField.style.backgroundImage = 'url(<?php echo ROOT . 'themes/' . $GLOBALS['theme']; ?>/images/loading.gif)'; if (response != '') { usernameField.style.backgroundImage = 'none'; if (response == 'true') { @@ -92,7 +92,7 @@ function useAddress(ele) { function getTitle(input, response){ var title = document.getElementById('titleField'); if (title.value == '') { - title.style.backgroundImage = 'url(<?php echo ROOT; ?>images/loading.gif)'; + title.style.backgroundImage = 'url(<?php echo ROOT . 'themes/' . $GLOBALS['theme']; ?>/images/loading.gif)'; if (response != null) { title.style.backgroundImage = 'none'; title.value = response; |