removed filter that didnt work anyway

This commit is contained in:
perploug
2013-11-14 09:08:13 +01:00
parent 4f27fd6d40
commit 87fc9c3ee7

View File

@@ -2,7 +2,10 @@
angular.module("umbraco")
.controller("Umbraco.Dialogs.IconPickerController",
function ($scope, iconHelper) {
iconHelper.getIcons("").then(function(icons){
iconHelper.getIcons().then(function(icons){
$scope.icons = icons;
});
});
}
);