]> git.saurik.com Git - cydia.git/blobdiff - Cydia.app/package.js
Committing final workaround for the tiny iframe of doom problem.
[cydia.git] / Cydia.app / package.js
index 6ec06cf1c7a8d50f0f751f65bbd103bfef939959..104bd8c6826273a52b57ccdf33142ec648152d3a 100644 (file)
@@ -78,16 +78,7 @@ var special_ = function () {
             if (typeof value.notice == "undefined")
                 $(".notice").addClass("deleted");
             else
             if (typeof value.notice == "undefined")
                 $(".notice").addClass("deleted");
             else
-                $("#notice-src")[0].outerHTML = '<iframe' +
-                    ' class="notice"' +
-                    ' id="notice-src"' +
-                    ' frameborder="0"' +
-                    ' width="320"' +
-                    ' height="0"' +
-                    ' target="_top"' +
-                    ' src="' + $.xml(value.notice) + '"' +
-                    ' onload="onframe(' + "'notice-src', 'notice'" + ')"' +
-                '></iframe>';
+                $("#notice-src").src(value.notice);
 
             if (typeof value.rating == "undefined")
                 $(".rating").addClass("deleted");
 
             if (typeof value.rating == "undefined")
                 $(".rating").addClass("deleted");
@@ -210,17 +201,7 @@ var special_ = function () {
         $(".depiction").addClass("deleted");
     else {
         $(".description").addClass("deleted");
         $(".depiction").addClass("deleted");
     else {
         $(".description").addClass("deleted");
-
-        $("#depiction-src")[0].outerHTML = '<iframe' +
-            ' class="depiction"' +
-            ' id="depiction-src"' +
-            ' frameborder="0"' +
-            ' width="320"' +
-            ' height="0"' +
-            ' target="_top"' +
-            ' src="' + $.xml(depiction) + '"' +
-            ' onload="onframe(' + "'depiction-src', 'depiction'" + ')"' +
-        '></iframe>';
+        $("#depiction-src").src(depiction);
     }
 
     var description = package.longDescription;
     }
 
     var description = package.longDescription;
@@ -327,7 +308,6 @@ var special = function () {
         ' width="320"' +
         ' height="0"' +
         ' target="_top"' +
         ' width="320"' +
         ' height="0"' +
         ' target="_top"' +
-        ' onload="onframe(' + "'notice-src', 'notice'" + ')"' +
     '></iframe>';
 
     var depiction = $("#depiction-src");
     '></iframe>';
 
     var depiction = $("#depiction-src");
@@ -339,7 +319,7 @@ var special = function () {
         ' width="320"' +
         ' height="0"' +
         ' target="_top"' +
         ' width="320"' +
         ' height="0"' +
         ' target="_top"' +
-        ' onload="onframe(' + "'depiction-src', 'depiction'" + ')"' +
+        ' onload_="loaded()"' +
     '></iframe>';
 
     special_();
     '></iframe>';
 
     special_();