Skip to content

Commit

Permalink
fixing linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
sumitarora committed Jun 10, 2016
1 parent fe207ba commit d8dfbd6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/utils/ng-validate.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
let isInitalized: boolean = false;

const observeDOM = (() => {
const MutationObserver = window['MutationObserver'];
const MutationObserver =
/* tslint:disable */
window['MutationObserver'];
/* tslint:enable */

const eventListenerSupported = window.addEventListener;

return function (obj, callback) {
Expand Down

0 comments on commit d8dfbd6

Please sign in to comment.