Alex Olshansky
ead9cb7fb4
fix(ngdocs): merge duplicate css class attributes
2013-07-09 14:35:55 +01:00
tgkokk
f59b9c6fbd
docs(guide/e2e-testing): fix typos
2013-07-07 20:31:15 +01:00
Andrew O'Brien
0e9e0af975
docs(guide/directive): make directive controller minification-safe
...
It is best to emphasize that the "controller" property needs to be min safe
Closes #3125
2013-07-04 00:28:54 +01:00
exex zian
c21ab0a68a
docs(tutorial/step9): formatted Unicode character line
...
Add tick and cross mark corresponding to their respective unicodes.
2013-07-02 22:49:54 -07:00
Niall Smart
48eb297c11
docs(guide/location): fix example code - hashPrefix is a method
2013-07-02 10:01:02 +01:00
Igor Minar
b6b504b04c
docs(misc/faq): remove obsolte t-shirt instructions
2013-06-28 11:27:32 -07:00
Adam
bad9d1b71f
docs(guide/e2e-testing): clarify description of input(name) selector
...
The description of the input selector made it seem that you were selecting
an input element based upon it's name attribute. In reality, you are
selecting an element by the string in the ng-model attribute.
2013-06-27 20:45:53 +01:00
Nelson Blaha
d57613cd6d
docs(tutorial): add experiment showing reverse sort
2013-06-27 19:36:26 +01:00
Jeffrey Palmer
f810940600
docs(guide/controller): fix an error in the scope inheritance example
...
The chained scope creation example at the bottom of this document was using the childCtrl to create the babyScope, instead of the childScope.
2013-06-25 23:54:17 +01:00
Pete Bacon Darwin
73f8112032
fix(doc-gen): correctly transform index files
...
Closes #3021
2013-06-25 21:17:36 +01:00
Domenic Denicola
00d890c07a
docs(guide/expression): remove reference to NullPointerException
2013-06-25 21:13:32 +01:00
Chirayu Krishnappa
99e85fc9b5
fix(docs): set ng-app for editing with plunker
...
Closes #3011
2013-06-21 12:28:34 -07:00
NimaVaziri
3621896e9d
docs(cookbook/helloworld): display "World" if no name is entered
2013-06-20 14:39:16 +01:00
Michał Gołębiowski
f1b94b4b59
feat(jqLite): switch bind/unbind to more recent jQuery on/off
...
jQuery switched to a completely new event binding implementation as of
1.7.0, centering around on/off methods instead of previous bind/unbind.
This patch makes jqLite match this implementation while still supporting
previous bind/unbind methods.
2013-06-19 20:53:24 +01:00
sarkasm
0bfa29377d
docs(directive): fix typo
2013-06-19 11:50:47 +01:00
gdi2290
db8d8f9a43
docs(tutorial): add missing 'node' command and <code> tags
2013-06-18 22:05:28 +01:00
John Bohn
8b81cf202b
docs(tutorial/step_07): add commas make tutorial read more clearly
2013-06-18 21:56:53 +01:00
Matias Niemelä
bf7ec4bbb1
chore(ngdocs): change minimum search length requirement
2013-06-18 09:40:13 -04:00
Matias Niemelä
f6be59c1b9
chore(ngdocs): provide test code for lunr search in docs
2013-06-18 09:37:29 -04:00
Matias Niemelä
46dfb92afd
feat(ngdocs): provide support for user to jump between different versions of the angularjs documentation
2013-06-17 22:17:44 -07:00
Matias Niemelä
ef22968810
feat(ngdocs): support popover, foldouts and foldover annotations
2013-06-17 22:00:54 -07:00
Matias Niemelä
cec4ce28b9
chore(ngdocs): allow user to press escape key to close docs search
2013-06-17 21:23:22 -07:00
Ore Landau
cd3dd13425
docs(guide/di): fix headings hierarchy
2013-06-13 22:50:57 +01:00
Jad Naous
a2d4b5c5d8
docs(guide/e2e-testing): fix verb tense
2013-06-13 22:37:19 +01:00
Ore Landau
5ec188f697
docs(tutorial/step_05): apply more useful link to services
2013-06-13 21:14:06 +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
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
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ä
f56125d94e
chore(ngdocs): setup bower as the package manager for the docs pages
2013-06-06 22:58: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
Igor Minar
65f5e856a1
chore(ngdoc): fix deprecated node api path.existsSync -> fs.existsSync
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
Pete Bacon Darwin
c785b2edff
docs(guide/unit-testing): fix controller test example
2013-06-04 22:10:04 +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
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
Eduardo Garcia
a95bfbeac0
docs(guide): format snippets of code in plain text
2013-06-04 20:06:33 +01:00
adamshaylor
c6fa3b06b1
docs(overview.ngdoc): clarify wording
2013-06-04 19:59:42 +01:00
Lucas Galfasó
c38073667d
chore(docs): add reference to the blog
...
Add a reference to the blog at the documentation.
2013-05-30 23:43:27 -07:00
Matias Niemelä
21c70729d9
feat(ngdocs): provide support for inline variable hinting
2013-05-30 21:42:41 -07:00
Siddique Hameed
4179f62cc2
docs(guide/unit-testing): add expression example
...
* Improved developer guide, directive unit testing documentation code with scope expression
* Removed documentation block with nothing on it
2013-05-23 21:55:44 -07:00
Eddie Monge
18f14117de
style(docs/template): add in missing semicolons
...
Add semicolons where they were missing in the docs section per Google
code styling guide.
Closes #2736
2013-05-22 22:51:16 +01:00
Jens Rantil
9d19b512e0
docs(guide/directive): clarify directive priority
...
Fixes #2644 .
2013-05-22 21:09:20 +01:00
Matias Niemelä
5bc2836a0d
docs(tutorial): fix the float issue with the improve docs button
2013-05-21 14:02:19 +01:00