fixing missing ng.scope on api callback

This commit is contained in:
Raymond Suelzer
2015-07-17 16:13:57 -04:00
parent 370f04bfcd
commit d187f678d1
+2 -2
View File
@@ -159,7 +159,7 @@ declare module uiGrid {
getSelectAllState: () => boolean;
on: {
rowSelectionChanged: (scope: ng.IScope, handler: (row: IGridRow, event?: Event) => void) => void;
rowSelectionChangedBatch: (scope, handler: (row: IGridRow[], event?: Event) => void) => void;
rowSelectionChangedBatch: (scope: ng.IScope, handler: (row: IGridRow[], event?: Event) => void) => void;
}
}
@@ -170,7 +170,7 @@ declare module uiGrid {
previousPage: () => void;
seek: () => void;
on: {
paginationChanged: (scope, handler: (newPage: number, pageSize: number) => void) => void;
paginationChanged: (scope: ng.IScope, handler: (newPage: number, pageSize: number) => void) => void;
}
}