Removed unnecessary semicolons.

This commit is contained in:
alext 2017-01-21 20:02:38 +01:00
parent 3d2701615b
commit c2dff6cdcd
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@
*/ */
function CategoriesHelper() { function CategoriesHelper() {
this.filterResults = {}; this.filterResults = {};
}; }
/** /**
* Binds the default event handlers of the categories tab. * Binds the default event handlers of the categories tab.

View file

@ -22,7 +22,7 @@
*/ */
function CustomersHelper() { function CustomersHelper() {
this.filterResults = {}; this.filterResults = {};
}; }
/** /**
* Binds the default event handlers of the backend customers page. * Binds the default event handlers of the backend customers page.

View file

@ -22,7 +22,7 @@
*/ */
function ServicesHelper() { function ServicesHelper() {
this.filterResults = {}; this.filterResults = {};
}; }
ServicesHelper.prototype.bindEventHandlers = function() { ServicesHelper.prototype.bindEventHandlers = function() {
var instance = this; var instance = this;