Skip to content

Instantly share code, notes, and snippets.

@KarafiziArtur
Created April 14, 2016 08:55
Show Gist options
  • Save KarafiziArtur/a8035c0a1b523adbe607eab7ff9b0a92 to your computer and use it in GitHub Desktop.
Save KarafiziArtur/a8035c0a1b523adbe607eab7ff9b0a92 to your computer and use it in GitHub Desktop.
Randomize Angular ng-repeat
<div ng-controller="MyCtrl">
<p ng-repeat="i in list|orderBy:random">{{i}}</p>
</div>
function MyCtrl($scope) {
$scope.list = ['a', 'b', 'c', 'd', 'e', 'f', 'g'];
$scope.random = function() {
return 0.5 - Math.random();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment