Custom Query (7259 matches)
Results (13 - 15 of 7259)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#8518 | fixed | xss vulnerablity in ur web site http://jqueryui.com/ | ||
Description |
sir there is a cross site scripting vulnerablity in your web site the affeted link is please patch it as soon as posslile |
|||
#7229 | notabug | wrong widget event binding on creation | ||
Description |
error in handler functions call when using a code like this <html> <head> <link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/themes/base/jquery-ui.css"></style> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js"></script> <script type="text/javascript"> $( function(){ var elem = $('#elem'); elem.autocomplete({ minLength : 0, source: ['1', '2', '3', '4', '5'], select : function(event, ui) { alert('foo!'); } }); elem.bind('autocompleteselect', function(event, ui){alert('bar!');}); // on automatic 'autocompleteselect' trigger (using autocomplete from UI) // both handlers will fire // If we manually trigger selection elem.trigger('autocompleteselect', {}); // the first handler won't fire - however, the second will } ) </script> </head> <body> <input type="text" id="elem"> </body> </html> the problem resides in ui.widget's _trigger function which treats both kinds of events separately.
doesn't consider that 'type' can be not only full name, but also shorthanded. Solution : if 'type' starts with widget event prefix - should crop event prefix from the beginning of type variable before accessing properties |
|||
#5691 | fixed | wrong menu size calculation in webkit browsers | ||
Description |
In all webkit-based browsers the menu size calculation seems to be wrong. Just test it at the autocomplete demo site with chrome or safari. eg: In 'Default functionality' search for 'asp' and then delete one by one character and see the menu getting wider and wider. |