You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2015/08/28 21:32:26 UTC

allura git commit: [#7955] tooltip titles on our custom buttons

Repository: allura
Updated Branches:
  refs/heads/db/7955 [created] d573e5f0c


[#7955] tooltip titles on our custom buttons


Project: http://git-wip-us.apache.org/repos/asf/allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/allura/commit/d573e5f0
Tree: http://git-wip-us.apache.org/repos/asf/allura/tree/d573e5f0
Diff: http://git-wip-us.apache.org/repos/asf/allura/diff/d573e5f0

Branch: refs/heads/db/7955
Commit: d573e5f0c9edaad12e9c23f1e383713f988cf099
Parents: 79d3e27
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Fri Aug 28 18:24:44 2015 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Fri Aug 28 18:24:44 2015 +0000

----------------------------------------------------------------------
 Allura/allura/lib/widgets/resources/js/sf_markitup.js | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/d573e5f0/Allura/allura/lib/widgets/resources/js/sf_markitup.js
----------------------------------------------------------------------
diff --git a/Allura/allura/lib/widgets/resources/js/sf_markitup.js b/Allura/allura/lib/widgets/resources/js/sf_markitup.js
index e478792..da61c3a 100644
--- a/Allura/allura/lib/widgets/resources/js/sf_markitup.js
+++ b/Allura/allura/lib/widgets/resources/js/sf_markitup.js
@@ -37,14 +37,16 @@ $(window).load(function() {
                     tool = {
                       name: tool.name,
                       action: show_help,
-                      className: tool.className
+                      className: tool.className,
+                      title: 'Formatting Help'
                     };
                     break;
                   case 'preview':
                     tool = {
                       name: tool.name,
                       action: show_preview,
-                      className: tool.className
+                      className: tool.className,
+                      title: 'Preview'
                     };
                     break;
                 }