aboutsummaryrefslogtreecommitdiffstats
path: root/docs/src/templates/doc_widgets.js
AgeCommit message (Collapse)Author
2012-05-04chore(docs): re-skin main documentationMisko Hevery
2012-04-04docs(tutorial): update tutorial intro + steps 0-3Igor Minar
also contains all kinds of fixes that I had to make in the docs app to get the tutorial to render correctly
2012-03-29fix(docs): update the example widget regexp for detecting angular.js urlIgor Minar
so that we don't show angular-cookies instead of angular.js
2012-03-29fix(docs): properly rewrite urls in doc examples at docs-nextIgor Minar
2012-03-09chore(*): refactor all ng: to ng-Igor Minar
2012-03-09refactor($provide) Rename service -> providerVojta Jina
It registers a provider class, so this makes more sense. Breaks Rename $provide.service -> $provide.provider
2012-03-08fix(docs): remove undefined from examples with jsfiddle=falseIgor Minar
2012-03-08chore(compiler): change default restriction to attribute only for directivesMisko Hevery
2012-03-05fix(docs): Add $locationProvider methods to the docs example providerVojta Jina
- $locationProvider.html5Mode - $locationProvider.hashPrefix Docs example is basically a different application on the same page, but we don't want to instantiate multiple instances of $browser or $location service, so we are overriding these providers to return the instances from parent app. Overriding the service with $provide.value caused a provider to be auto-generated without the necessary hashPrefix and html5Mode apis.
2012-02-28docs: evaluate only scripts with type text/javascriptVojta Jina
2012-01-25docs(compiler): update the compiler docsMisko Hevery
2012-01-25refactor(directives): connect new compilerMisko Hevery
- turn everything into a directive
2012-01-12refactor(module): strict separation between module-config / app-runtimeMisko Hevery
2012-01-10feat(module): new module loaderMisko Hevery
2011-11-14refactor(injector): removed loadModule/ng:moduleMisko Hevery
- added module property to doc:example
2011-11-13style(docs): make jslint happy - fix some warningsVojta Jina
2011-11-13feat(docs): allow examples with hidden source codeVojta Jina
2011-10-14fix(docs): fix jsfiddle integrationIgor Minar
this got accidentally messed up during the forms refactoring and mass renaming
2011-10-11chore(formating): clean code to be function() {Misko Hevery
2011-10-11feat(forms): new and improved formsMisko Hevery
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-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-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
2011-08-15refactor(jqLite): remove jqLite show/hide supportIgor Minar
it turns out that even with our tricks, jqLite#show is not usable in practice and definitely not on par with jQuery. so rather than introducing half-baked apis which introduce issues, I'm removing them. I also removed show/hide uses from docs, since they are not needed. Breaks jqLite.hide/jqLite.show which are no longer available.
2011-07-29feat(tutorial): add an arrow to 'Workspace Reset Instructions' linksIgor Minar
The arrow is a hint that user won't navigate to a new page, but instead the instructions will be displayed inline.
2011-07-26doc(tutorial): fix navigation widget to work without jQueryVojta Jina
jqLite doesn't support class selectors, can find only by tag name...
2011-07-17refactor(docs): run e2e tests with and without jqueryDi Peng
- e2e tests will run index.html (without jquery) and with index-jq.html(with jquery). - many small changes to make e2e tests work withough JQuery as we discover problems that were previously hidden by using real JQuery.
2011-06-10Fix small typo in docs widget (tutorial instructions)Vojta Jina
2011-06-06Docs: Error 404 page with simple suggestion for new linksVojta Jina
2011-06-06fixing broken docs linksIgor Minar
2011-06-06docs app css/js/html rewriteIgor Minar
2011-06-06Add doc:tutorial-instructions widgetVojta Jina
2011-04-07fix indentation regexp for doc:examplesIgor Minar
2011-02-22fix documentation for ieMisko Hevery
2011-02-04fix angular.js file path detection in docsIgor Minar
2011-02-03addded cookbookMisko Hevery
2011-02-01Developer guide documentationMisko Hevery
2011-01-26Added part of guide documentation and supporting changes to doc generatorMisko Hevery
2011-01-24fixed example rendering, add tests for it.Misko Hevery
2011-01-18doc widgets examples should display angular src as CAO instead of DAOIgor Minar
2011-01-18remove script.type attribute from example widgets since its optional in html5Igor Minar
2011-01-10complete rewrite of documentation generationMisko Hevery
- romeved mustache.js - unified templates - improved testability of the code