aboutsummaryrefslogtreecommitdiff
path: root/jsScuttle.php
diff options
context:
space:
mode:
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-20 17:03:28 +0000
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>2008-11-20 17:03:28 +0000
commit8ca4455dc7add53f496161eda1e86c455d4ce37c (patch)
tree28bb9027ac59c575577e43c0f8b3182fd4c32b58 /jsScuttle.php
parent936f680062b40d237b90383c31034f9873ef8cd0 (diff)
downloadsemanticscuttle-8ca4455dc7add53f496161eda1e86c455d4ce37c.tar.gz
semanticscuttle-8ca4455dc7add53f496161eda1e86c455d4ce37c.tar.bz2
Minor fix: move images .gif to images/ directory
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@167 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'jsScuttle.php')
-rw-r--r--jsScuttle.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/jsScuttle.php b/jsScuttle.php
index d802b90..53356aa 100644
--- a/jsScuttle.php
+++ b/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; ?>loading.gif)';
+ usernameField.style.backgroundImage = 'url(<?php echo $root; ?>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; ?>loading.gif)';
+ title.style.backgroundImage = 'url(<?php echo $root; ?>images/loading.gif)';
if (response != null) {
title.style.backgroundImage = 'none';
title.value = response;