You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2013/08/28 16:35:22 UTC

[41/50] git commit: [#6284] move commit id to beginning of line so that they all line up and are easier to visually scan

[#6284] move commit id to beginning of line so that they all line up and are easier to visually scan


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

Branch: refs/heads/tv/6526
Commit: 40b0823b815cb58dde7529f64ed834cdd8f48d7d
Parents: 55d3d3f
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Mon Aug 26 23:02:06 2013 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Mon Aug 26 23:02:06 2013 +0000

----------------------------------------------------------------------
 Allura/allura/lib/widgets/resources/js/commit_browser.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/40b0823b/Allura/allura/lib/widgets/resources/js/commit_browser.js
----------------------------------------------------------------------
diff --git a/Allura/allura/lib/widgets/resources/js/commit_browser.js b/Allura/allura/lib/widgets/resources/js/commit_browser.js
index 4375529..37c4408 100644
--- a/Allura/allura/lib/widgets/resources/js/commit_browser.js
+++ b/Allura/allura/lib/widgets/resources/js/commit_browser.js
@@ -210,7 +210,7 @@ if($('#commit_graph')){
             canvas_ctx.fill();
             canvas_ctx.stroke();
             canvas_ctx.fillStyle = "#000";
-            canvas_ctx.fillText(commit.message + " " + commit.short_id, (1+next_column) * x_space, y_pos);
+            canvas_ctx.fillText(commit.short_id + " " + commit.message, (1+next_column) * x_space, y_pos);
         }
     }