Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ConstantineYurevich committed Aug 7, 2017
1 parent aea837c commit d9ae365
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/EventManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ class EventManager {

fireUnfiredEvents() {
const events = _digitalData.events;
events.forEach((event, index, originalArray) => {
events.forEach((event) => {
if (!event.hasFired) {
this.fireEvent(event);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default class Integration extends EventEmitter {
safeCallback();
} else {
errorLog(`error loading "${tagName}" error="${err}"`);
}
}
});
// TODO: hack until refactoring load-script
deleteProperty(attr, 'src');
Expand Down

0 comments on commit d9ae365

Please sign in to comment.