(func)
| 2391 | * Create a function which has 'unsafe' privileges (required by windows8 apps) |
| 2392 | */ |
| 2393 | var createMicrosoftUnsafeLocalFunction = function (func) { |
| 2394 | if (typeof MSApp !== 'undefined' && MSApp.execUnsafeLocalFunction) { |
| 2395 | return function (arg0, arg1, arg2, arg3) { |
| 2396 | MSApp.execUnsafeLocalFunction(function () { |
| 2397 | return func(arg0, arg1, arg2, arg3); |
| 2398 | }); |
| 2399 | }; |
| 2400 | } else { |
| 2401 | return func; |
| 2402 | } |
| 2403 | }; |
| 2404 | |
| 2405 | var reusableSVGContainer; |
| 2406 | /** |
no test coverage detected
searching dependent graphs…