diff options
author | Cyril Roelandt <tipecaml@gmail.com> | 2013-08-15 17:12:44 +0200 |
---|---|---|
committer | Cyril Roelandt <tipecaml@gmail.com> | 2013-08-15 17:19:34 +0200 |
commit | 2ad6bfaba8189256f6eb75913c9f24f0135184db (patch) | |
tree | 678cd6287319faff8ce3ff852cec67c09ab8fe14 /build-aux | |
parent | 0938cd27315cc9d0a6591c398c222415b18ca4fc (diff) | |
download | patches-2ad6bfaba8189256f6eb75913c9f24f0135184db.tar patches-2ad6bfaba8189256f6eb75913c9f24f0135184db.tar.gz |
list-packages: remove deprecated "height" attribute on "td" element.
See http://www.w3.org/TR/html5-diff/#obsolete-attributes for more information.
* build-aux/list-packages.html(package-sxml)[description-id]: remove "height"
attribute for "td" elements.
Diffstat (limited to 'build-aux')
-rwxr-xr-x | build-aux/list-packages.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/list-packages.scm b/build-aux/list-packages.scm index d0607878fd..5ca2323ebc 100755 --- a/build-aux/list-packages.scm +++ b/build-aux/list-packages.scm @@ -103,7 +103,7 @@ exec guile -l "$0" \ (title "Link to the Guix package source code")) ,(package-name package) " " ,(package-version package))) - (td (@ (colspan "2") (height "0")) + (td (@ (colspan "2")) (a (@ (href "javascript:void(0)") (title "show/hide package description") (onClick ,(format #f "javascript:show_hide('~a')" |