diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-12-04 07:17:49 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:09:00 +0000 |
commit | 22f8bed9669aee2b33cbc4da49eea3106e91c338 (patch) | |
tree | 6fee9ee08b04bf3d7a3f0997a97d49e8d861f4e7 /Cydia.app/package.js | |
parent | 03c0f7a9657ad201acfa37b0f94bc080014a4516 (diff) |
Reorganized code and mostly finished ratings indicator.
Diffstat (limited to 'Cydia.app/package.js')
-rw-r--r-- | Cydia.app/package.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Cydia.app/package.js b/Cydia.app/package.js index fc8e218..bab0b2f 100644 --- a/Cydia.app/package.js +++ b/Cydia.app/package.js @@ -49,8 +49,13 @@ $(function () { var rating = package.rating; if (rating == null) $(".rating").remove(); - else - $("#rating").src(rating); + else { + $.xhr(rating, 'GET', {}, null, { + success: function (value) { + document.getElementById("rating").contentWindow.document.write(value); + } + }); + } $("#settings").href("cydia://package-settings/" + idc); |