Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
truncate vertical text no matter what, and use native overflow on dis…
Browse files Browse the repository at this point in the history
…copane (bug 671351)
  • Loading branch information
potch committed Jul 13, 2011
1 parent c202be6 commit a7d3865
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions media/css/zamboni/discovery-pane.css
Expand Up @@ -739,6 +739,7 @@ ul.addons {
font-family: inherit;
margin: .25em 0;
text-align: center;
text-overflow: ellipsis;
overflow: hidden;
}

Expand Down
2 changes: 1 addition & 1 deletion media/js/zamboni/truncation.js
@@ -1,5 +1,5 @@
$.fn.truncate = function(opts) {
if (z.hasTruncation) return this;
if (z.hasTruncation && opts.dir != 'v') return this;
opts = opts || {};
var showTitle = opts.showTitle || false,
dir = (opts.dir && opts.dir[0]) || 'h',
Expand Down

0 comments on commit a7d3865

Please sign in to comment.