diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 20:59:24 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-03-17 20:59:24 +0000 |
commit | 7cf0313e7b8672d9757f565fd72c8e7dcf1a8904 (patch) | |
tree | 617bc7d0556dc6f6d2e4b5b192211f7bb66fa6e3 /modules/tag/views | |
parent | c81ee12411af5d26bbe4fe413ea7f6728d047ace (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/tag/views')
-rw-r--r-- | modules/tag/views/admin_tags.html.php | 5 |
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> |