summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-03-17 20:59:24 +0000
committerBharat Mediratta <bharat@menalto.com>2009-03-17 20:59:24 +0000
commit7cf0313e7b8672d9757f565fd72c8e7dcf1a8904 (patch)
tree617bc7d0556dc6f6d2e4b5b192211f7bb66fa6e3 /modules
parentc81ee12411af5d26bbe4fe413ea7f6728d047ace (diff)
Remove the in-place tag editing code from the default theme. It
should be implemented in the tags module for now, and then possibly generalized out to lib later on.
Diffstat (limited to 'modules')
-rw-r--r--modules/tag/views/admin_tags.html.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/tag/views/admin_tags.html.php b/modules/tag/views/admin_tags.html.php
index d6472706..484cb759 100644
--- a/modules/tag/views/admin_tags.html.php
+++ b/modules/tag/views/admin_tags.html.php
@@ -1,7 +1,7 @@
<?php defined("SYSPATH") or die("No direct script access.") ?>
<script>
$("document").ready(function() {
- $("#gTagAdmin .tag-name").attr("title", "<?= t("Click to edit this tag") ?>");
+ // $("#gTagAdmin .tag-name").attr("title", "<?= t("Click to edit this tag") ?>");
$("#gTagAdmin .delete-link").attr("title", $(".delete-link:first span").html());
});
</script>
@@ -40,7 +40,8 @@
<li>
<span id="gTag-<?= $tag->id ?>" class="gEditable tag-name"><?= $tag->name ?></span>
<span class="understate">(<?= $tag->count ?>)</span>
- <a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>" class="gDialogLink delete-link gButtonLink">
+ <a href="<?= url::site("admin/tags/form_delete/$tag->id") ?>"
+ class="gDialogLink delete-link gButtonLink">
<span class="ui-icon ui-icon-trash"><?= t("Delete this tag") ?></span></a>
</li>