diff options
author | Grant Paul <chpwn@chpwn.com> | 2010-09-25 22:15:30 -0700 |
---|---|---|
committer | Jay Freeman <saurik@Jay-Freemans-MacBook-Pro.local> | 2010-10-04 00:12:21 -0700 |
commit | 21ea11a48e66dea8bc917392ea80f045df3a56a6 (patch) | |
tree | a35631cb71850c6537d97b1ac1094febc650e3a6 /Cydia.app | |
parent | eb97a3a886e9b0423f1f085c611ecd0440cdd4b6 (diff) |
Better Queue UI. Discoverable. WebKit JS/objc bridge.
Diffstat (limited to 'Cydia.app')
-rw-r--r-- | Cydia.app/confirm.html | 6 | ||||
-rw-r--r-- | Cydia.app/confirm.js | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Cydia.app/confirm.html b/Cydia.app/confirm.html index f5c2c90..846f465 100644 --- a/Cydia.app/confirm.html +++ b/Cydia.app/confirm.html @@ -32,5 +32,11 @@ <fieldset id="modifications"> </fieldset> +<fieldset class="queue" style="margin-top: 25px;"> +<a href="javascript:queue();" style="text-align: center; color: #2a3f70; font-size: 15px; background-image: none;"> + <label localize="CONTINUE_QUEUING"></label> +</div></a> +</fieldset> + </panel> </body></html> diff --git a/Cydia.app/confirm.js b/Cydia.app/confirm.js index 5ef99bf..cc00bf4 100644 --- a/Cydia.app/confirm.js +++ b/Cydia.app/confirm.js @@ -15,6 +15,8 @@ $(function () { $("#resuming").html($.xml(resuming)); } else for (var i = 0; i != issues.length; ++i) { document.title = cydia.localize("CANNOT_COMPLY"); + + $(".queue").remove(); $("._issues").remove(); |