aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/guide/dev_guide.services.$location.ngdoc
AgeCommit message (Collapse)Author
2014-03-03docs(guide/services): rewrite services documentationBrian Ford
2014-02-21docs(guide/location): fix url-based link to AUTO moduleStéphane Reynaud
Closes #6381
2014-02-16docs(bike-shed-migration): convert guide <doc:...> examples to <example>...Caitlin Potter
This CL also contains style fixes as the converted scripts caused jshint to complain.
2014-02-16docs(guide): remove unnecessary "Developer Guide: " from @namesPeter Bacon Darwin
2014-02-16docs(content): fix bad linksPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): fix url-based links refs to AUTO modulePeter Bacon Darwin
2014-02-16docs(all): convert <pre>/</pre> snippets to GFM snippetsCaitlin Potter
2014-02-16docs(bike-shed-migration): fix up links outside the domainPeter Bacon Darwin
It is safer to use markdown style links and save jsdoc style links for internal links and code references
2014-02-12docs(guide/$location): correct link to HTML5 draft section 5.5 (history api)Stéphane Reynaud
Previous link url is no longer served, responds with bad link (error 404). This change corrects the URL to point to section 5.5 of the draft. The old URL appears to have been removed from service in 2012. Corrects the link to "History API" Closes #6225
2013-10-03docs(guide/$location): fix broken example demoPete Bacon Darwin
The demo of the hash-bang vs html5-mode deep links was broken since the introduction of a check for previously bootstrapped elements. See this commit: 3ee744cc63 We fix this problem by applying a null for the injector value of the element of the at the root of the sub-app. It also turns out that it was not necessary, and if fact broke the demo, to replace the $document service for the sub-app. This was because the $compile service calls `$document.createElement()`, which doesn't exist on a `div`. Finally, the bootstrap CSS was limiting the width of the ngAddress bar input box, which made it difficult to see the changing URLs.
2013-10-03docs(guide/$location): replace host.com addresses with example.comFreek Wielstra
The host.com links on this documentation page took you to an ad page of dubious content. Now changed to example.com, in accordance with RFC 2606 Closes #4206
2013-09-25docs(guide/$location): provide a title for section about `replace()`gdennie
Closes #4104
2013-09-25docs(guide/$location): clarify $location service rolegdennie
Clean up confusing use of the term URL to refer to $location as well as 'URL in the browser'. Closes #4103
2013-09-18docs(guide/$location): describe workaround for collocated appsAsh
When using Angular in the root of a domain with HTML5 URLs where there are links to external paths within the same directory, the `otherwise` route handler will catch these external files. This can be fixed by prefixing '.' onto the links to URLs that should be handled by angular routing. Original Issue: #3520 Example of Fix: http://fiddle.jshell.net/fgHf6/3/ Closes #3555
2013-07-02docs(guide/location): fix example code - `hashPrefix` is a methodNiall Smart
2013-06-19feat(jqLite): switch bind/unbind to more recent jQuery on/offMichał Gołębiowski
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-05-17doc(guide:$location): fix example for two way databinding.Jeremy Wilken
When you are watching the $location.path(), it has to be wrapped in a function since it is not attached to the scope and if you pass a string to $scope.$watch it is evaluated against the $scope.
2013-04-11docs(guide): Update $locationProvider docs.Prathan Thananart
Default hashPrefix setting is not `'!'`, it's actually `""`. Source: https://github.com/angular/angular.js/blob/master/src/ng/location.js#L472
2013-01-17doc(guide): Fix examples of $location.html5modeShai Reznik
2013-01-17docs(guide): minor grammar fixesMatt Rohrer
2012-10-31docs(guide/location): fix table formattingFred Sauer
Fix table formatting so headings are bold, rows are separated by lines, and rows have :hover style
2012-08-30doc(devguide) - Fix typos and small grammatical errors in the developer guide.Steve Nicolai
2012-06-12docs(*): simplify doc urlsIgor Minar
we now have two types of namespaces: - true namespace: angular.* - used for all global apis - virtual namespace: ng.*, ngMock.*, ... - used for all DI modules the virual namespaces have services under the second namespace level (e.g. ng.) and filters and directives prefixed with filter: and directive: respectively (e.g. ng.filter:orderBy, ng.directive:ngRepeat) this simplifies urls and makes them a lot shorter while still avoiding name collisions
2012-06-10docs(*): fix various outdated docs and examplesIgor Minar
Closes #1030
2012-06-09docs($location): clarify the two-way data-binding noteIgor Minar
Closes #1030
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-12fix($location): properly rewrite urls in html5 mode with base url setIgor Minar
previously we were doing all kinds of checks to see if we should rewrite the url or not and we were missing many scenarios. not any more. with this change, we rewrite the url unless: - the href is not set - link has target attribute - the absolute url of the link doesn't match the absolute prefix for all urls in our app This also means that ng-ext-link attribute which we previously used to distinguish external links from app links is not necessary any more. apps can just set target=_self to prevent rewriting. BREAKING CHANGE: ng-ext-link directive was removed because it's unnecessary apps that relied on ng-ext-link should simply replace it with target=_self
2012-04-09fix(docs): change all directive references to use the normalized namesIgor Minar
2012-03-20docs(guide/location): fix exampleIgor Minar
2012-03-13docs(links): corrected borken linksMisko Hevery
2012-01-25docs(compiler): update the compiler docsMisko Hevery
2012-01-23refactor(scope.$watch): rearrange arguments passed into watcher (newValue, ↵Vojta Jina
oldValue, scope) As scopes are injected into controllers now, you have the reference anyway, so having scope as first argument makes no sense… Breaks $watcher gets arguments in different order (newValue, oldValue, scope)
2012-01-17docs(*): more fixesIgor Minar
2011-11-14style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-14fix(doc) cleanup all dev guide doc link warningsMisko Hevery
2011-11-14fix(doc) cleanup all api doc link warningsMisko Hevery
2011-11-14refactor($location): merged $locationConfig service into $locationProviderMisko Hevery
2011-11-13fix(docs.guide): fix $location exampleVojta Jina
2011-10-13docs($location): Html5 -> HTML5Igor Minar
2011-10-13docs($location): update replace() docsIgor Minar
2011-10-13docs($location): fix $config -> $locationConfig in docsIgor Minar
2011-10-12docs(*): remove @workInProgress from everywhereIgor Minar
it's not useful any more and it only makes the docs look ugly
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-09-08doc($location): $location docs + using $location guideVojta Jina