refactor(item): rename indices to indexes

This commit is contained in:
Brandy Carney
2016-06-29 12:43:03 -04:00
parent 37c53ac07c
commit 2fc83c40d3
2 changed files with 11 additions and 11 deletions

View File

@ -72,8 +72,8 @@ class ApiDemoPage {
}
}
reorderData(indices: any) {
this.chats = reorderArray(this.chats, indices);
reorderData(indexes: any) {
this.chats = reorderArray(this.chats, indexes);
}
}