summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2015-05-19 11:43:55 -0400
committerTed Trask <ttrask01@yahoo.com>2015-05-19 11:43:55 -0400
commit55d863aedcb36617e34e4ed7ededb215cb544353 (patch)
tree73f7f16bcd269d18a764fa7f403d3bc2bbf0e283
parent885b604a5b2a612a28f25e8d356585e2707b61b3 (diff)
downloadacf-provisioning-55d863aedcb36617e34e4ed7ededb215cb544353.tar.bz2
acf-provisioning-55d863aedcb36617e34e4ed7ededb215cb544353.tar.xz
Update link for showing unused / duplicate groups in editdeviceparams view
-rw-r--r--provisioning-editdeviceparams-html.lsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/provisioning-editdeviceparams-html.lsp b/provisioning-editdeviceparams-html.lsp
index 0a48834..7a66a7b 100644
--- a/provisioning-editdeviceparams-html.lsp
+++ b/provisioning-editdeviceparams-html.lsp
@@ -76,9 +76,9 @@ end
if ((currentsection == previoussection) && (currentnumber != previousnumber) && (0 == $(this).find(".defaultoverride").length) && (0 == $(this).find(".groupdefaultoverride").length)) {
$(this).toggle();
- $('<a href="javascript:;" class="'+id+'">Show</a>').insertAfter($(this)).click(showsection);
+ $('<a href="javascript:;" class="'+id+'"><img src="<%= html.html_escape(page_info.wwwprefix..page_info.staticdir) %>tango/16x16/actions/list-add.png"> Add '+$(this).children().first().text()+'</a>').insertAfter($(this)).click(showsection);
if ($(this).prev("a").length == 1) {
- // If the previous sibling is also a Show link, hide this one
+ // If the previous sibling is also an Add link, hide this one
$(this).next().toggle();
}
}