Skip to content

Commit fdf56fa

Browse files
Added some documentation
1 parent 2a17997 commit fdf56fa

File tree

4 files changed

+45
-4
lines changed

4 files changed

+45
-4
lines changed

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Angular Utilities
2+
3+
I am working on a large-scale AngularJS-based project and I'll be extracting
4+
any useful re-usable components that I make and putting them here.
5+
6+
I'm following the convention of the [Ng-Boilerplate] (https://github.com/ngbp/ngbp) project of bundling
7+
all relevant code together, so that you should be able to simply copy the
8+
directory of the component you want to use, and it will include unit tests
9+
and any other dependencies.
10+
11+
This code is made available under the MIT license, so feel free to use any of these is your projects. If you find any of them useful I'd be happy to get feedback!
12+
13+
## Index of Utilities
14+
15+
Filters
16+
-------
17+
18+
- **ordinalDate** : Works like the built-in date filter, but will add the English ordinal suffix to the day.
19+
20+
That's all for now. Watch this space - there'll be more soon I expect.

license.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
The MIT License (MIT)
2+
Copyright (c) 2014 Michael Bromley
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
6+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7+
8+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
{
22
"name": "angularUtils",
3-
"version": "0.0.0",
3+
"version": "0.0.1",
44
"description": "A collection of re-usable AngularJS components",
55
"main": "index.js",
6-
"scripts": {
7-
"test": "echo \"Error: no test specified\" && exit 1"
8-
},
96
"author": "Michael Bromley",
107
"license": "MIT",
118
"devDependencies": {

src/filters/ordinalDate/README.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Ordinal Date Filter
2+
3+
This is a wrapper filter around the built-in [Angular date filter](http://docs.angularjs.org/api/ng.filter:date),
4+
which adds the facility to display the English ordinal date suffix to the 'day' part of the format string.
5+
6+
## Example
7+
8+
Given the timestamp 1384474920000 (15th November 2013, 00:22:00), and the date format string 'd MM yyyy',
9+
the regular Angular date filter will return '15 November 2013'. This filter will return '15th November 2013'. Simple.
10+
11+
## Usage
12+
13+
Include the filter definition somewhere in your Angular app and then use it like any filter:
14+
15+
{{ 1384474920000 | ordinalDate }}
16+

0 commit comments

Comments
 (0)