Commit f14c5ae8 authored by Mike Greiling's avatar Mike Greiling

refactor MergeRequestTabs to es6 class syntax

parent ac0d9b34
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
if (window.mrTabs) { if (window.mrTabs) {
window.mrTabs.unbindEvents(); window.mrTabs.unbindEvents();
} }
window.mrTabs = new MergeRequestTabs(this.opts); window.mrTabs = new gl.MergeRequestTabs(this.opts);
}; };
MergeRequest.prototype.showAllCommits = function() { MergeRequest.prototype.showAllCommits = function() {
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
}; };
fixture.preload('merge_request_tabs.html'); fixture.preload('merge_request_tabs.html');
beforeEach(function() { beforeEach(function() {
this["class"] = new MergeRequestTabs(); this["class"] = new gl.MergeRequestTabs();
return this.spies = { return this.spies = {
ajax: spyOn($, 'ajax').and.callFake(function() {}), ajax: spyOn($, 'ajax').and.callFake(function() {}),
history: spyOn(history, 'replaceState').and.callFake(function() {}) history: spyOn(history, 'replaceState').and.callFake(function() {})
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment