Ken Sheedlo
003861d2fd
chore(minErr): replace ngError with minErr
2013-06-17 13:29:30 -07:00
Igor Minar
908071afbf
feat(Grunt): add source maps to all min files
...
Generate source map files when build step is ran and adds source map
headers to all min files.
Source map url must be appended to the min file otherwise the line
offsets will be off.
Inspired by Ryan Seddon (PR #2858 )
Closes #1714
2013-06-14 21:51:25 -07:00
Ore Landau
cd3dd13425
docs(guide/di): fix headings hierarchy
2013-06-13 22:50:57 +01:00
Misha Moroshko
45ee8844f9
docs(select): fix typos in ngOptions
2013-06-13 22:47:47 +01:00
Ore Landau
9e2fd89021
docs($q): fix a few issues
2013-06-13 22:42:10 +01:00
Jad Naous
a2d4b5c5d8
docs(guide/e2e-testing): fix verb tense
2013-06-13 22:37:19 +01:00
Julien Bouquillon
14285568ca
style(ngRepeat): fix typos
2013-06-13 21:17:52 +01:00
Ore Landau
5ec188f697
docs(tutorial/step_05): apply more useful link to services
2013-06-13 21:14:06 +01:00
Dean Sofer
83f445336f
docs(FormController): add methods for FormController
2013-06-12 21:46:31 +01:00
Dean Peterson
0cb87f91ae
docs(ngModelController): improve $parsers/$formatters with example
2013-06-12 21:17:42 +01:00
Ore Landau
6ca5272f94
docs(ngClass): fix minor typo.
2013-06-12 20:47:32 +01:00
Pete Bacon Darwin
a4c3b06807
docs(guide/bootstrap): clarify manual bootstrapping
2013-06-12 20:40:07 +01:00
Pete Bacon Darwin
86f3e41dfe
chore(docs/writer): fix Windows path incompatibilities
...
NodeJS on Windows uses back slashes for path separators. This
difference can be mitigated by use of the nodeJS path library.
In particular the `sep` property and the `dirname()`, `normalize()`
and `join()` methods of this library. All path based arguments on
exported functions need to be normalized and `join` and `sep` must
be used instead of string manipulation to work with paths.
2013-06-12 20:02:45 +01:00
Pete Bacon Darwin
c9c3f718e2
docs(ngRoute): clarify when gets updated
2013-06-11 22:15:54 +01:00
Pete Bacon Darwin
b6ff8d751f
docs(ngSubmit): clarify that there must be no action attribute
2013-06-11 21:29:58 +01:00
Misko Hevery
4953b49761
fix(ngRepeat): support growing over multi-element groups
2013-06-11 13:14:34 -07:00
Misko Hevery
b28f96949a
fix($compile): support multi-element group over text nodes
2013-06-11 13:14:34 -07:00
Matias Niemelä
6b12432729
chore(ngdocs): add angular-route.js to karma docs suite
2013-06-10 18:55:26 -07:00
Matias Niemelä
ba3ca0be41
fix(angularFiles): ensure only karma-docs.js tests the component-spec files
2013-06-10 18:16:57 -04:00
Igor Minar
6c66315494
chore(docs): fix memory leak in example embed code
...
we need to sever the link between the main root scope and the example
root scope - this is only needed because we are embedding one app
in the other.
2013-06-10 13:14:26 -07:00
Igor Minar
b700aa9291
docs(faq): update customink order info
2013-06-10 11:39:01 -07:00
Igor Minar
4eaaf9f83c
chore(.gitignore): fix patterns
...
make patterns more strict so we don't accidentaly match stuff deeply
nested in the codebase.
2013-06-07 23:03:13 -07:00
Pete Bacon Darwin
8011b97bfa
chore(Gruntfile): ensure bower command is run under node
2013-06-07 20:24:26 +01:00
Igor Minar
a4300efef9
chore(closure-compiler): upgrade to version 20130603
2013-06-06 23:10:28 -07:00
Igor Minar
73534b3546
chore(closure-compiler): use bower to fetch closure compiler
...
this replaces the stale NPM dependency
2013-06-06 23:10:09 -07:00
Matias Niemelä
0317fd1651
chore(ngdocs): expose showdown.js to docs pages and docs testing suite
2013-06-06 22:58:56 -07:00
Matias Niemelä
77c4fc6847
chore(ngdocs): setup karma-docs testing suite to test docs components
2013-06-06 22:58:56 -07:00
Matias Niemelä
f56125d94e
chore(ngdocs): setup bower as the package manager for the docs pages
2013-06-06 22:58:55 -07:00
Matias Niemelä
079bf5f275
chore(ngdocs): replace google closure library with a NPM module
2013-06-06 22:14:55 -07:00
Matias Niemelä
4949586a76
fix(ngdoc): fix the node warnings that show up during build
2013-06-06 22:13:43 -07:00
Matias Niemelä
b36504577c
feat(ngdocs): provide documentation for the new ngRepeat repeater syntax
2013-06-06 22:09:05 -07:00
Matias Niemelä
9faabd1ba0
chore(AngularPublic): remove angular.noConflict feature
2013-06-06 22:06:50 -07:00
Igor Minar
65f5e856a1
chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSync
2013-06-06 17:08:50 -07:00
Igor Minar
63c1e5beff
chore(grunt): add autotest:modules target
2013-06-06 17:08:50 -07:00
Igor Minar
5599b55b04
refactor($route): pull $route and friends into angular-route.js
...
$route, $routeParams and ngView have been pulled from core angular.js
to angular-route.js/ngRoute module.
This is was done to in order keep the core focused on most commonly
used functionality and allow community routers to be freely used
instead of $route service.
There is no need to panic, angular-route will keep on being supported
by the angular team.
Note: I'm intentionally not fixing tutorial links. Tutorial will need
bigger changes and those should be done when we update tutorial to
1.2.
BREAKING CHANGE: applications that use $route will now need to load
angular-route.js file and define dependency on ngRoute module.
Before:
```
...
<script src="angular.js"></script>
...
var myApp = angular.module('myApp', ['someOtherModule']);
...
```
After:
```
...
<script src="angular.js"></script>
<script src="angular-route.js"></script>
...
var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']);
...
```
Closes #2804
2013-06-06 17:07:12 -07:00
Jared Forsyth
7a5cfb593f
docs(guide/unit-testing): fix typo
2013-06-04 22:28:43 +01:00
Jared Forsyth
8400852f4e
docs(guide/injecting_controllers): add a hint in example
...
Add a hint to tell the user that they need to click 3 times before an alert is shown.
2013-06-04 22:25:10 +01:00
Marcin Wosinek
e1810c5cd3
docs(ngTransclude): fix outdated scope definition in example
2013-06-04 22:13:58 +01:00
Pete Bacon Darwin
c785b2edff
docs(guide/unit-testing): fix controller test example
2013-06-04 22:10:04 +01:00
Robbie Ferrero
dc238ce123
docs(Angular.js): clarify ngApp usage
2013-06-04 22:01:11 +01:00
Robb Shecter
0921bd0816
docs(angular-mocks): fix typo in example
...
fromJSON() should be fromJson()
2013-06-04 21:53:43 +01:00
Alan Klement
76cb53f837
docs(sanitize): add @description section
2013-06-04 21:48:39 +01:00
Siddique Hameed
ef5c874415
docs(index): make menu links relative
...
Before the Develop drop down menu items were hard coded with an absolute url,
which meant that they did not work correctly on local or ci server builds.
2013-06-04 21:08:29 +01:00
Luc Morin
8eb8c4a32f
docs(ngClass): clarify the use of object map
2013-06-04 21:01:26 +01:00
Ehsan Ghandhari
4fd057e7c7
docs(guide/concepts): add comment as a type of directive
2013-06-04 20:53:39 +01:00
Robb Shecter
d3d7b9e3ed
docs(guide/understanding_model): improve example consistency
2013-06-04 20:50:09 +01:00
Manuel Kiessling
40acd186bc
docs(guide/compiler): fix some minor language errors
2013-06-04 20:38:02 +01:00
Alex Young
ffcfe7a86e
docs(guide/di): fix some small grammatical issues
2013-06-04 20:30:43 +01:00
Jens Rantil
6a33aa63cd
docs(validate-commit-msg): fix incorrect comment
...
If you `cd` into the repo, `validate-commit-msg.js` will be in the root
of it.
2013-06-04 20:23:51 +01:00
Luc Morin
303c7f9166
docs(input): provide explanation of how ngModel will affect the local scope
2013-06-04 20:16:07 +01:00