##// END OF EJS Templates
commits: hide expanders that don't do anything.
dan -
r3782:0a346c4e default
parent child Browse files
Show More
@@ -104,6 +104,13 b' var CommitsController = function () {'
104
104
105 }
105 }
106 $('#graph_nodes').css({'padding-top': padding});
106 $('#graph_nodes').css({'padding-top': padding});
107
108 $.each($('.message.truncate'), function(idx, value) {
109 if(!(value.offsetWidth < value.scrollWidth)){
110 $(this).closest('td').siblings('.expand_commit').find('i').hide();
111 }
112 });
113
107 };
114 };
108
115
109 this.getChunkUrl = function (page, chunk, branch, commit_id, f_path) {
116 this.getChunkUrl = function (page, chunk, branch, commit_id, f_path) {
General Comments 0
You need to be logged in to leave comments. Login now