Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Commit 525f3d7

Browse files
author
Rusty Green
committed
Merge remote-tracking branch 'origin/master'
2 parents 598fc35 + 219b2c4 commit 525f3d7

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

README.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,31 @@ A flickr module for angular js. The module includes support for creating a photo
55

66
You can view a Flickr "Set" gallery demo here: [www.rustygreen.com/angular-flickr](http://rustygreen.com/angular-flickr?ref=github)
77

8-
There are no dependencies required for this angular module (other than angular js), but all directives do have pre-set css classes to look good in Bootstrap 3.0
8+
There are no dependencies required for this angular module (other than angular js), but all directives do have pre-set css classes to look good with Bootstrap 3.0 css (Bootstrap javascript is not required - which means no jquery either)
9+
10+
##Installation
11+
Installation is easy since the angular-flickr module has no dependencies:
12+
13+
#####Install with bower:
14+
<pre>bower install angular-flickr</pre>
15+
16+
#####Application:
17+
<pre>// Include the css:
18+
&lt;link rel=&quot;stylesheet&quot; href=&quot;bower_components/angular-flickr/dist/angular-flickr.min.css&quot;&gt;
19+
20+
// Include the js:
21+
&lt;script src=&quot;bower_components/angular-flickr/dist/angular-flickr.min.js&quot;&gt;&lt;/script&gt;
22+
23+
// Add the flickr module as a dependency to your application:
24+
module('myApp', ['flickr'])
25+
26+
// You're good to go! Start using the flickr directives and services...</pre>
27+
28+
29+
Don't use Bower? Shame on you... I suppose you could include the files from here (don't use this in production!):
30+
<pre>&lt;link rel=&quot;stylesheet&quot; href=&quot;https://rawgithub.com/rustygreen/angular-flickr/master/dist/angular-flickr.min.css&quot;&gt;
31+
&lt;script src=&quot;https://rawgithub.com/rustygreen/angular-flickr/master/dist/angular-flickr.min.js&quot;&gt;&lt;/script&gt;</pre>
32+
933

1034
##Application Configuration
1135
Common configurations related to the Flickr API, as well as default and options, can be set using angular's module value method

0 commit comments

Comments
 (0)