diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-12-03 09:46:31 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-12-03 09:46:31 +0000 |
commit | 066fb4e8e3e911b8504365cf62ce1af15e391628 (patch) | |
tree | ca72da1921daeb8a49b94b2189e2facd7d8dd568 /templates/top.inc.php | |
parent | 280d90cfefb52f911ba272ca6085270f1865a8a4 (diff) | |
download | semanticscuttle-066fb4e8e3e911b8504365cf62ce1af15e391628.tar.gz semanticscuttle-066fb4e8e3e911b8504365cf62ce1af15e391628.tar.bz2 |
Bug fix: correct DOJO completion in tags edition
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@186 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/top.inc.php')
-rw-r--r-- | templates/top.inc.php | 22 |
1 files changed, 3 insertions, 19 deletions
diff --git a/templates/top.inc.php b/templates/top.inc.php index e149c34..d2f05ea 100644 --- a/templates/top.inc.php +++ b/templates/top.inc.php @@ -4,8 +4,7 @@ <head> <title><?php echo filter($GLOBALS['sitename'] . (isset($pagetitle) ? ': ' . $pagetitle : '')); ?></title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> -<link rel="icon" type="image/png" - href="<?php echo ROOT ?>icon.png" /> +<link rel="icon" type="image/png" href="<?php echo ROOT ?>icon.png" /> <link rel="stylesheet" type="text/css" href="<?php echo ROOT ?>scuttle.css" /> <?php @@ -16,26 +15,11 @@ if(isset($rsschannels)) { } } ?> - -<?php if (isset($loadjs)) :?> - -<script type="text/javascript" - src="<?php echo ROOT ?>jsScuttle.php"></script> - - <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dijit/themes/nihilo/nihilo.css"> -<script type="text/javascript" - src="http://ajax.googleapis.com/ajax/libs/dojo/1.2/dojo/dojo.xd.js" - djConfig="parseOnLoad:true, isDebug:false, usePlainJson:true"></script> - -<script type="text/javascript"> -dojo.require("dojo.parser"); -dojo.require("dojo.data.ItemFileReadStore"); -dojo.require("dojox.form.MultiComboBox"); -dojo.require("dijit.Tree"); -</script> +<?php if (isset($loadjs)) :?> +<script type="text/javascript" src="<?php echo ROOT ?>jsScuttle.php"></script> <?php endif ?> </head> |