diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-22 17:45:41 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-22 17:45:41 +0000 |
commit | 8ca4d35dcc466df18b0fa6a322d00b030b183d15 (patch) | |
tree | d6730f57a3defdf28c0a7dd7455b4ff9920eb35e /public/javascripts | |
parent | b30b6717a271f06290c07479b7e26446f039e4df (diff) | |
download | redmine-8ca4d35dcc466df18b0fa6a322d00b030b183d15.tar.gz redmine-8ca4d35dcc466df18b0fa6a322d00b030b183d15.zip |
Added a bit of AJAX on the SCM browser (tree view).
git-svn-id: http://redmine.rubyforge.org/svn/trunk@862 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'public/javascripts')
-rw-r--r-- | public/javascripts/prototype.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/javascripts/prototype.js b/public/javascripts/prototype.js index 505822177..2735d10dc 100644 --- a/public/javascripts/prototype.js +++ b/public/javascripts/prototype.js @@ -1629,7 +1629,7 @@ Abstract.Insertion.prototype = { } catch (e) { var tagName = this.element.tagName.toUpperCase(); if (['TBODY', 'TR'].include(tagName)) { - this.insertContent(this.contentFromAnonymousTable()); + this.insertContent(this.contentFromAnonymousTable()._reverse()); } else { throw e; } |