diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-09-29 16:09:10 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-09-29 16:09:10 -0700 |
commit | 8ba3737b3b7284c9b7cf40028240ebf89daad1d7 (patch) | |
tree | 7676fe6285009deedf1704a7479e77e2e263cae9 /include/main.js | |
parent | d150b8e8b13944153231c6fc475d81c689464348 (diff) | |
download | volse-hubzilla-8ba3737b3b7284c9b7cf40028240ebf89daad1d7.tar.gz volse-hubzilla-8ba3737b3b7284c9b7cf40028240ebf89daad1d7.tar.bz2 volse-hubzilla-8ba3737b3b7284c9b7cf40028240ebf89daad1d7.zip |
moved a couple of translatable strings from js include file to translatable view
Diffstat (limited to 'include/main.js')
-rw-r--r-- | include/main.js | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/include/main.js b/include/main.js index 3b6528ee9..fcb6677d3 100644 --- a/include/main.js +++ b/include/main.js @@ -16,20 +16,6 @@ document.getElementById(theID).style.display = "none" } - function commentOpen(obj,id) { - if(obj.value == 'Comment') { - obj.value = ''; - obj.className = "comment-edit-text-full"; - openMenu("comment-edit-submit-wrapper-" + id); - } - } - function commentClose(obj,id) { - if(obj.value == '') { - obj.value = 'Comment'; - obj.className="comment-edit-text-empty"; - closeMenu("comment-edit-submit-wrapper-" + id); - } - } var src = null; var prev = null; @@ -137,10 +123,6 @@ } - function confirmDelete() { - return confirm("Delete this item?"); - } - function imgbright(node) { $(node).attr("src",$(node).attr("src").replace('hide','show')); $(node).css('width',24); |