]> git.saurik.com Git - cydia.git/blobdiff - Cydia.app/package.js
URL Authentication.
[cydia.git] / Cydia.app / package.js
index e409aa988851f8c9e14f6c846d31ddce1f7f82f0..1a8fc92bf8bb76272932081176e22677937c3475 100644 (file)
@@ -134,16 +134,19 @@ $(function () {
     nid.html(id);
     var width = nid.width();
 
-    if (width > 240) {
-        var spacing = (240.0 - nid.width()) / (id.length - 1) + "px";
+    var max = 238.0;
+    if (width > max) {
+        var spacing = (max - nid.width()) / (id.length - 1) + "px";
         nid.css("letter-spacing", spacing);
     }
 
     var section = package.section;
     if (section == null)
         $(".section").remove();
-    else
-        $("#section").html(package.section);
+    else {
+        $("#section-src").src("cydia://section-icon/" + encodeURIComponent(section));
+        $("#section").html(section);
+    }
 
     var size = package.size;
     if (size == 0)