Skip to content
Snippets Groups Projects
Commit c74b7eb2 authored by Mike Greiling's avatar Mike Greiling
Browse files

fix overlooked window binding in spec files

parent b7aaec05
No related branches found
No related tags found
1 merge request!9123Remove window-binding hack with imports-loader
Pipeline #
Showing
with 20 additions and 20 deletions
Loading
Loading
@@ -229,4 +229,4 @@ require('./fixtures/emoji_menu');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -18,4 +18,4 @@ require('~/behaviors/autosize');
return $(document).trigger('load');
};
});
}).call(this);
}).call(window);
Loading
Loading
@@ -103,4 +103,4 @@ require('~/behaviors/quick_submit');
return $.Event('keydown', $.extend({}, defaults, options));
};
});
}).call(this);
}).call(window);
Loading
Loading
@@ -36,4 +36,4 @@ require('~/behaviors/requires_input');
return expect($('.submit')).not.toBeDisabled();
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -42,4 +42,4 @@ require('~/extensions/array');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -39,4 +39,4 @@ require('~/extensions/jquery');
});
});
});
}).call(this);
}).call(window);
This diff is collapsed.
Loading
Loading
@@ -50,4 +50,4 @@ require('~/lib/utils/text_utility');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -165,4 +165,4 @@ require('~/issue');
expect($('.issue_counter')).toHaveText(1);
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -227,4 +227,4 @@ require('~/line_highlighter');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -26,4 +26,4 @@ require('~/merge_request');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -209,4 +209,4 @@ require('vendor/jquery.scrollTo');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -189,4 +189,4 @@ require('~/lib/utils/datetime_utility');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -166,4 +166,4 @@ require('~/new_branch_form');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -73,4 +73,4 @@ require('~/lib/utils/text_utility');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -51,4 +51,4 @@ require('~/project');
window.gon = {};
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -79,4 +79,4 @@ require('~/extensions/jquery.js');
expect(todoToggleSpy.calls.count()).toEqual(1);
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -175,4 +175,4 @@ require('vendor/fuzzaldrin-plus');
expect(enterKeyEvent.isDefaultPrevented()).toBe(true);
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -79,4 +79,4 @@ require('~/shortcuts_issuable');
});
});
});
}).call(this);
}).call(window);
Loading
Loading
@@ -41,4 +41,4 @@ require('~/syntax_highlight');
});
});
});
}).call(this);
}).call(window);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment