]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fixes image preview when fetched from the store. 897/head
authorRaghu Nayyar <hey@raghunayyar.com>
Sun, 14 Aug 2016 19:19:33 +0000 (00:49 +0530)
committerMorris Jobke <hey@morrisjobke.de>
Wed, 17 Aug 2016 07:58:17 +0000 (09:58 +0200)
settings/js/apps.js

index d2411197c9ca4b6455c0059aaf8225cc07a2143a..f8ad9c7918cd316044c5c292076c4735e084d32a 100644 (file)
@@ -200,7 +200,7 @@ OC.Settings.Apps = OC.Settings.Apps || {
 
                currentImage.onload = function() {
                        page.find('.app-image')
-                               .append(OC.Settings.Apps.imageUrl(app.preview))
+                               .append(OC.Settings.Apps.imageUrl(app.preview, app.detailpage))
                                .fadeIn();
                };
 
@@ -228,12 +228,18 @@ OC.Settings.Apps = OC.Settings.Apps || {
 
        /**
         * Returns the image for apps listing
+        * url : the url of the image
+        * appfromstore: bool to check whether the app is fetched from store or not.
         */
 
-       imageUrl : function (url) {
+       imageUrl : function (url, appfromstore) {
                var img = '<svg width="72" height="72" viewBox="0 0 72 72">';
-               img += '<defs><filter id="invert"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0" /></filter></defs>';
-               img += '<image x="0" y="0" width="72" height="72" preserveAspectRatio="xMinYMin meet" filter="url(#invert)" xlink:href="' + url + '"  class="app-icon" /></svg>';
+               if (appfromstore) {
+                       img += '<image x="0" y="0" width="72" height="72" preserveAspectRatio="xMinYMin meet" xlink:href="' + url + '"  class="app-icon" /></svg>';
+               } else {
+                       img += '<defs><filter id="invert"><feColorMatrix in="SourceGraphic" type="matrix" values="-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0" /></filter></defs>';
+                       img += '<image x="0" y="0" width="72" height="72" preserveAspectRatio="xMinYMin meet" filter="url(#invert)" xlink:href="' + url + '"  class="app-icon" /></svg>';
+               }
                return img;
        },