Skip to content

Instantly share code, notes, and snippets.

View mbostwick's full-sized avatar

Michael Bostwick mbostwick

View GitHub Profile
https://stackoverflow.com/questions/34166304/accessing-windows-certificate-store-certs-via-java
var decreaseNumberOfRepeatedElements = function (bothValues, newInt, ngRepeatScope) {
var limit = bothValues ? newInt : 0;
ngRepeatScope.last = ngRepeatScope.elems[limit];
for (var i = ngRepeatScope.elems.length - 1; i > limit; i -= 1) {
ngRepeatScope.elems[i].remove();
ngRepeatScope.elems.pop();
}
};
var increaseNumberOfRepeatedElements = function (newInt, ngRepeatScope, ngRepeatTransclude) {