Skip to content
Snippets Groups Projects
Commit 3f4484b3 authored by Kevin Abel's avatar Kevin Abel
Browse files

IE < 9 chokes on delete on the window object. Use null instead.

parent d784fc4e
No related branches found
No related tags found
1 merge request!2Local site search and Directory CSS updates
......@@ -25,7 +25,7 @@
localResults = 'local_results';
window[initCallback] = function() {
delete window[initCallback];
window[initCallback] = null;
require(['jquery', 'analytics'], function($, analytics) {
// Caching Class
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment