Skip to content

Commit c8ee22a

Browse files
committed
bootstrap FireAngular (based on FireQuery and AngularJS Batarang Firefox port)
0 parents  commit c8ee22a

22 files changed

+27004
-0
lines changed

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
# Junk that could exist anywhere:
3+
.DS_Store
4+
*.swp
5+
*.tmp
6+
.*.gz
7+
*.patch
8+
*~
9+
10+
# Temporary files created by Eclipse
11+
.tmp*
12+
13+
# Editor junk
14+
*.project
15+
/.pydevproject
16+
/.settings/
17+
/.settings.xml
18+
/.settings.xml.old
19+
/.idea/
20+
*.iws
21+
*.ids
22+
*.iml
23+
*.ipr
24+
25+
# Build Files
26+
/build/
27+
/release/
28+
*.graphml
29+
*.xpi
30+
31+
# Files from NPM
32+
/node_modules/
33+
34+
# Extensions
35+
36+
37+
# Bash
38+
*.sh
39+
*.bat

.jpmignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Doc Files
2+
/docs/
3+
4+
# Test Files
5+
/test/
6+
7+
# GIT
8+
/.git/
9+
10+
# Other files
11+
.gitignore
12+
.jpmignore
13+
.jshintrc
14+
.project
15+
16+
# Existing packages
17+
*.xpi

.jshintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"esnext": "true",
3+
"predef": [ "require", "exports", "module" ],
4+
"curly": "true"
5+
}

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
FireAngular 0.1
2+
===============
3+
4+
Firefox plugin for Angular development. Built on top of native
5+
developer tools in Firefox. [Firebug 3] isn't required, but the
6+
screen-shot below shows how native developer tools look like
7+
when Firebug theme is activated.
8+
9+
![](https://raw.githubusercontent.com/rpl/fireangular/master/docs/images/inspector.png)
10+
11+
![](https://raw.githubusercontent.com/rpl/fireangular/master/docs/images/inspector_firebug.png)
12+
13+
Try it for yourself:
14+
15+
1. Install [FireAngular](https://github.com/rpl/fireangular/releases) (currently zeta)
16+
2. Load an Angular webapp, e.g. [TODO MVC Angular](http://todomvc.com/examples/angularjs/#/)
17+
3. Inspect an Angular generated DOM Element
18+
19+
License
20+
-------
21+
FireAngular is free and open source software distributed under the
22+
[BSD License](https://github.com/rpl/fireangular/blob/master/license.txt).
23+
24+
Hacking on FireAngular
25+
--------------------
26+
See FireAngular [Developer Guide](https://github.com/rpl/fireangular/wiki/Developer-Guide)
27+
28+
Further Resources
29+
-----------------
30+
* DevTools Extension Examples: https://github.com/mozilla/addon-sdk/tree/devtools/examples

chrome.manifest

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
content fireangular chrome/content/
2+
content fireangular-resources chrome/resources/ contentaccessible=yes
3+
4+
skin fireangular classic/1.0 chrome/skin/classic/shared/
5+
skin fireangular.sdk classic/1.0 node_modules/firebug.sdk/skin/classic/shared/
6+
7+
locale fireangular en-US chrome/locale/en-US/
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
fireangular.Angularify.label=Angularify
2+
fireangular.Angularify.tip=Applies latest Angular to the current page.

0 commit comments

Comments
 (0)