Custom Query (18300 matches)
Results (178 - 180 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#10535 | patchwelcome | Grid: default context menu is displayed in Safari4/win when header contextMenu invoked via keyboard | ||
Description |
open Safari 4 on Windows XP, load grid/tests/test_grid_column_display.html. Use keyboard to put focus on a column header. Press shift+F10 to invoke the custom context menu for the grid header. The custom context menu is displayed but note that the default browser context menu is also displayed. Only the custom context menu should be displayed. Navigate to a data cell and press shift+F10 - there should be no context menu displayed but the browser context menu is displayed. Discovered in 1.4 but also occurs in 1.3.2 |
|||
#10333 | fixed | fromJson should not eva() without check | ||
Description |
Currently, the `/^(?:[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]|"(?:\\.|[^"\\])*")*$/`
is not valid JSON and should not be Adding the line `if (!/^(?:[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]|"(?:\\.|[^"\\])*")*$/.test(json)) throw "invalid JSON";` // (or some such)
to |
|||
#18514 | duplicate | Shrinksafe fails to shrink angular (tested with 1.3.6) | ||
Description |
Here is the simplified case: The following input code define([], function () { this.testAttribute = function /***/problematicFunction/***/(name, directiveFactory) { var testFunction = function() { //doAnything }; testFunction(/***/problematicFunction/***/); return this; }; }); becomes define("desktop/shrinkSafeTest",[],function(){ this.testAttribute=function /***/problematicFunction/***/(_1,_2){ var _3=function(){ }; _3(/***/_4/***/); return this; }; }); |