aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src
AgeCommit message (Collapse)Author
2011-11-21feat(service.$autoScroll): scroll to hash fragmentVojta Jina
- whenever hash part of the url changes - after ng:view / ng:include load
2011-11-19fix(docs): specify disqus_urlIgor Minar
2011-11-14refactor(injector): removed loadModule/ng:moduleMisko Hevery
- added module property to doc:example
2011-11-14style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-14fix(doc) cleanup all api doc link warningsMisko Hevery
2011-11-14fix(doc): make output less noisyMisko Hevery
2011-11-14refactor(docs): improved the visual rendering of the documentation pagesMisko Hevery
2011-11-14doc($filter): added $filter documentationMisko Hevery
2011-11-14doc(AUTO, NG_MOCK): Documenting the AUTO and NG_MOCK moduleMisko Hevery
2011-11-14refactor($location): merged $locationConfig service into $locationProviderMisko Hevery
2011-11-14chore(scenario tests): make scenario tests pass againMisko Hevery
2011-11-14refactor(api): remove type augmentationMisko Hevery
BREAK: - remove angular.[Object/Array/String/Function] - in templates [].$filter(predicate) and friends need to change to [] | filter:predicate
2011-11-14refactor(services): migrate angular.service -> moduleMisko Hevery
2011-11-13style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-13fix(docs.guide): fix $location exampleVojta Jina
2011-11-13feat(docs): allow examples with hidden source codeVojta Jina
2011-11-13feat(docs): allow custom attributes on <doc:source>Vojta Jina
Allow any attributes, not only jsfiddle...
2011-11-05docs(css): fixing positioning of disqus commentsIgor Minar
float:left causes the comments to shift to the left when content is longer than the sidebar
2011-10-30feat(docs): remove the Report Issue link - duplication of disqusIgor Minar
2011-10-30fix(docs): special case url generation for index pagesIgor Minar
2011-10-30fix(docs): increment load counter only when a valid page is requestedIgor Minar
2011-10-30feat(docs): disqus integrationdandoyon
- add style for disqus threads in css - add loadDisqus method to be called afterPartialLoaded - add div container for disqus threads
2011-10-26fix(docs): remove unused $browser dependencyIgor Minar
2011-10-22fix(docs): key-binding used old scope apisIgor Minar
2011-10-22feat(docs): add "Loading..." notificationIgor Minar
2011-10-22fix(docs): update page title only when content loadsIgor Minar
2011-10-22style(docs): change "this" to "scope" in the controllerIgor Minar
2011-10-18fix(gen-docs): require files without touching PATHVojta Jina
So that it works on latest revision of node... New version of Node (v0.5.x) does not support require.paths.push().
2011-10-14fix(docs): fix jsfiddle integrationIgor Minar
this got accidentally messed up during the forms refactoring and mass renaming
2011-10-13fix(docs): set proper base href when hashbang url requestedVojta Jina
2011-10-12docs(*): remove @workInProgress from everywhereIgor Minar
it's not useful any more and it only makes the docs look ugly
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
2011-09-26fix(e2e): add index-nocache.html to run e2e tests without cacheIgor Minar
using appcache while running e2e tests was causing the following problems: - Safari would occasionally reload the app (as a result of the appcache refresh) during the angular.validator.asychronous test, which would result in test failure and false positivy. - Firefox6 would run the tests very slowly, disabling the cache resolved the latency issues - Sometimes tests would run with stale code pulled from cache, which would result in flaky tests.
2011-09-26feat(docs): use html5 history api for all routing in the docs appVojta Jina
- Configure our docs app to use new $location with html5 history api! - Update simple node web server to serve index.html for all links (rewritting). - Update .htaccess file to serve index.html for all links (rewritting). - At runtime determine the base href path and attach it to the DOM. We needed the absolute URL to get all browsers to work well. - Because of the above, we also need to dynamically determine all needed js/css resources and add them to the DOM. This was needed because FF6 would eagerly fetch resources with wrong URL since the base element is added to the dom at runtime. - All content html files were moved to the partials directory, because with the new html5 urls it was impossible to tell if request for http://domain/api/angular.filter.html was an html5 url for the html filter doc page, or an xhr/appcache request for the content html file for the html filter. f
2011-09-16feat (jquery): upgrade everything to jQuery 1.6.4Igor Minar
Closes #556
2011-09-08style: fix some missing semi-colons and spaces, typosVojta Jina
2011-09-08doc($location): $location docs + using $location guideVojta Jina
2011-09-08fix(docs): update docs to reflect new $location and fix e2e testsVojta Jina
2011-09-06fix(docs): use window.execScript instead of window.eval on IEIgor Minar
IE's window.eval doesn't execute in the global context, so we have to use window.execScript instead which works like window.eval on normal browsers. However execScript throws an exception when an empty string is passed in, so I created a workaround with a workaround.
2011-08-31style(e2e tests): shorten jquery/jqlite describeIgor Minar
2011-08-31style(docs): improve the formatting of events in docsMisko Hevery
2011-08-31feat(docs): add support for eventsMisko Hevery
2011-08-24feat(doc): generate both normal and debug version of index.htmlDi Peng
- index.html has manifest file and angular.min.js - index-jq.html has manifest file, angular.min.js and jquery.min.js - index-debug.html has angular.js - index-jq-debug.html has angular.js and jquery.min.js
2011-08-24feat(ng:cloak): add ng:cloak directiveIgor Minar
2011-08-21fix(docs): remove more unecessary use of hide() and show() methodDi Peng
- tutorial section of docs fails to render properly as doc:tutorial-instructions widget uses deprecated show and hide methods of jQlite.
2011-08-21fix(docs): work around the lame ng:show directiveIgor Minar
2011-08-21fix(docs): change docs.css to avoid css clashes in buzz exampleIgor Minar
2011-08-19fix(sample): Fix for jsFiddle integrationDi Peng
2011-08-16doc(sample): Add javascript sandbox integration (jsFiddle)dandoyon
Change doc_widget.js to: - render "edit in jsfiddle" button next to all examples - make opt out certain examples by adding jsfiddle="false" attribute to doc:source element