Adds removed method back in case someone is using it (would be breaking otherwise)
This commit is contained in:
@@ -649,6 +649,15 @@ function listViewController($rootScope, $scope, $routeParams, $injector, $cookie
|
||||
return alias;
|
||||
}
|
||||
|
||||
function getItemKey(itemId) {
|
||||
for (var i = 0; i < $scope.listViewResultSet.items.length; i++) {
|
||||
var item = $scope.listViewResultSet.items[i];
|
||||
if (item.id === itemId) {
|
||||
return item.key;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//GO!
|
||||
initView();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user