Skip to content

Commit

Permalink
fix(tslint): build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveVanOpstal committed Jun 5, 2016
1 parent 3de2906 commit eed7d67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/app/build/ability-sequence.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class AbilitySequenceComponent {
}

let stats = this.getStats();
for (var attrname in stats) {
for (let attrname in stats) {
effects[attrname] = stats[attrname];
}

Expand Down
4 changes: 1 addition & 3 deletions src/app/build/masteries/masteries.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ export class MasteriesComponent implements OnInit {

public ngOnInit() {
this.getData();
console.log('test1');
}

public enable() {
Expand Down Expand Up @@ -78,8 +77,7 @@ export class MasteriesComponent implements OnInit {
this.lolApi.getMasteries()
.subscribe(
res => {
this.data = this.alterData(res)
console.log('test2');
this.data = this.alterData(res);
},
error => { this.error = true; this.loading = false; },
() => this.loading = false
Expand Down

0 comments on commit eed7d67

Please sign in to comment.