diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-07-29 16:52:09 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-07-29 17:51:38 +0200 |
commit | 2781fdeed8f1d45ebba23fb2b2e22aa3bbd5f2ff (patch) | |
tree | 6a1684774be872cd00e610ae4ef4ab63f18de702 /files | |
parent | dee7fb3b722388c30a5ca3e69fb3cf846bb48edf (diff) | |
download | nextcloud-server-2781fdeed8f1d45ebba23fb2b2e22aa3bbd5f2ff.tar.gz nextcloud-server-2781fdeed8f1d45ebba23fb2b2e22aa3bbd5f2ff.zip |
automatically replace svg images with png for browsers that dont support svg
Diffstat (limited to 'files')
-rw-r--r-- | files/templates/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/templates/index.php b/files/templates/index.php index 9bc939ee90a..df78cf0bb2d 100644 --- a/files/templates/index.php +++ b/files/templates/index.php @@ -28,12 +28,12 @@ <input type="checkbox" id="select_all" /> <span class='name'><?php echo $l->t( 'Name' ); ?></span> <span class='selectedActions'> - <a href="" title="Download" class="download"><img alt="Download" src="../core/img/actions/download.svg" /></a> + <a href="" title="Download" class="download"><img class='svg' alt="Download" src="../core/img/actions/download.svg" /></a> <!--<a href="" title="" class="share">Share</a>--> </span> </th> <th id='headerSize'><?php echo $l->t( 'Size MB' ); ?></th> - <th id='headerDate'><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class='selectedActions'><a href="" title="Delete" class="delete"><img alt="Delete" src="../core/img/actions/delete.svg" /></a></span></th> + <th id='headerDate'><span id="modified"><?php echo $l->t( 'Modified' ); ?></span><span class='selectedActions'><a href="" title="Delete" class="delete"><img class='svg' alt="Delete" src="../core/img/actions/delete.svg" /></a></span></th> </tr> </thead> <tbody id="fileList"> |