RajeshChaudhary345 / dropdown-check-list

Automatically exported from code.google.com/p/dropdown-check-list
0 stars 0 forks source link

Explanation of `bgiframe` option incorrect #181

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hi,

The explanation for `bgiframe` in the docs says:

bgiframe: function(options) {}
I have no real idea what this does, but it is a function called during widget 
initialization, with a comment about IE 6. You could use it as a callout to 
affect the widget setup.

The code says:

            // BGIFrame for IE6
            if (options.bgiframe && typeof self.dropWrapper.bgiframe == "function") {
                self.dropWrapper.bgiframe();
            }

This option should be set to `true` if the user wants to use the bgiframe 
plugin (http://docs.jquery.com/Plugins/bgiframe) for the drop-down - the code 
reads "check if options.bgiframe is true and that the dropdown object has a 
bgiframe function (i.e. the bgiframe plugin has been loaded) and then call it 
if so.

Hope this clears it up. :)

Original issue reported on code.google.com by robertan...@gmail.com on 10 May 2011 at 11:06

GoogleCodeExporter commented 8 years ago
I have included your comment in the standard documentation -- thanks

Original comment by womohun...@ittrium.com on 16 May 2011 at 2:53