diff options
author | cvogeley <christian.vogeley@hotmail.de> | 2014-01-03 12:28:34 -0800 |
---|---|---|
committer | cvogeley <christian.vogeley@hotmail.de> | 2014-01-03 12:28:34 -0800 |
commit | 24850a4ea4676c96b6e0f97b45b23fe12e1c80a2 (patch) | |
tree | b8ce2f3b9ea14bb47b5f09ba64d17a0cc609154b /view/tpl | |
parent | 475b24ca9e758b257bde6f81c727178ae8b64bec (diff) | |
parent | 87ff49544376f71cf0f10aef5123886a99b36239 (diff) | |
download | volse-hubzilla-24850a4ea4676c96b6e0f97b45b23fe12e1c80a2.tar.gz volse-hubzilla-24850a4ea4676c96b6e0f97b45b23fe12e1c80a2.tar.bz2 volse-hubzilla-24850a4ea4676c96b6e0f97b45b23fe12e1c80a2.zip |
Merge pull request #254 from cvogeley/master
Webpage fixes for the moment without the fix for page not found after editing a webpage
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/jot-header.tpl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 09d035979..75239c179 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -306,16 +306,15 @@ function enableOnUser(){ </script> -<!-- <script> -$( document ).on( "click", ".wall-item-delete-link", function(e) { +$( document ).on( "click", ".wall-item-delete-link,.page-delete-link", function(e) { var link = $(this).attr("href"); // "get" the intended link in a var e.preventDefault(); - bootbox.confirm("<h4>Delete item?</h4>", function(result) { + bootbox.confirm("<h4>{{$confirmdelete}}</h4>", function(result) { if (result) { document.location.href = link;} }); }); </script> - --> + |