Skip to content

Instantly share code, notes, and snippets.

View leolana's full-sized avatar

Leonardo Lana leolana

View GitHub Profile
@njouanin
njouanin / fiddle.html
Last active December 29, 2017 10:24
angularJS zero padding filter
<div ng-app="MyApp">
<h1>Zero padding filter</h1>
<div>
<input type="text" ng-model="ztext" placeholder="Type some text ..." />
</div>
<div>
<h2>Result:</h2>
<p>{{ztext | zpad:4}}</p>
</div
</div>