gigaZhang / struts2-jquery

Automatically exported from code.google.com/p/struts2-jquery
0 stars 0 forks source link

Missing files from jar #968

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
noticed in vers 3.5.0, but still present in 3.5.1

in  jquery.ui.struts2.js

around line 175 you have

/** Handle the Dialog Widget */
dialog : function($elem, o) {
    ...
    if ($.browser.msie && parseInt($.browser.version, 10) <= 6) {
        o.bgiframe = true;
        self.require("js/base/jquery.bgiframe" + self.minSuffix + ".js");
    }

but the "jquery.bgiframe" it is not present in the jar

Original issue reported on code.google.com by asharlohmar on 15 Apr 2013 at 4:57

GoogleCodeExporter commented 9 years ago
This lines are removed with Version 3.5.x because jQuery UI 1.9.x does not 
suppert IE6 anymore. So bgiframe plugin was also removed.

Original comment by johgep on 25 Apr 2013 at 7:34