├── docs ├── content │ ├── notes │ │ └── empty.tmp │ ├── error │ │ ├── $animate │ │ │ ├── notcsel.ngdoc │ │ │ └── nocb.ngdoc │ │ ├── ng │ │ │ ├── cpta.ngdoc │ │ │ ├── areq.ngdoc │ │ │ ├── badname.ngdoc │ │ │ ├── test.ngdoc │ │ │ ├── cpi.ngdoc │ │ │ ├── cpws.ngdoc │ │ │ └── btstrpd.ngdoc │ │ ├── $interpolate │ │ │ ├── interr.ngdoc │ │ │ └── noconcat.ngdoc │ │ ├── $sce │ │ │ ├── itype.ngdoc │ │ │ ├── icontext.ngdoc │ │ │ ├── imatcher.ngdoc │ │ │ ├── iwcard.ngdoc │ │ │ ├── iequirks.ngdoc │ │ │ ├── unsafe.ngdoc │ │ │ └── insecurl.ngdoc │ │ ├── jqLite │ │ │ ├── offargs.ngdoc │ │ │ ├── onargs.ngdoc │ │ │ └── nosel.ngdoc │ │ ├── $cacheFactory │ │ │ └── iid.ngdoc │ │ ├── ngPattern │ │ │ └── noregexp.ngdoc │ │ ├── $resource │ │ │ ├── badname.ngdoc │ │ │ ├── badargs.ngdoc │ │ │ ├── badcfg.ngdoc │ │ │ └── badmember.ngdoc │ │ ├── $parse │ │ │ ├── isecobj.ngdoc │ │ │ ├── lexerr.ngdoc │ │ │ ├── ueoe.ngdoc │ │ │ ├── isecfn.ngdoc │ │ │ ├── syntax.ngdoc │ │ │ ├── isecff.ngdoc │ │ │ ├── isecwindow.ngdoc │ │ │ └── isecfld.ngdoc │ │ ├── $location │ │ │ ├── isrcharg.ngdoc │ │ │ ├── ipthprfx.ngdoc │ │ │ └── nostate.ngdoc │ │ ├── $q │ │ │ ├── norslvr.ngdoc │ │ │ └── qcycle.ngdoc │ │ ├── ngOptions │ │ │ └── iexp.ngdoc │ │ ├── ngModel │ │ │ ├── datefmt.ngdoc │ │ │ ├── constexpr.ngdoc │ │ │ ├── nonassign.ngdoc │ │ │ └── nopromise.ngdoc │ │ ├── $sanitize │ │ │ ├── badparse.ngdoc │ │ │ └── uinput.ngdoc │ │ ├── index.ngdoc │ │ ├── ngTransclude │ │ │ └── orphan.ngdoc │ │ ├── $compile │ │ │ ├── tpload.ngdoc │ │ │ ├── multidir.ngdoc │ │ │ ├── iscp.ngdoc │ │ │ ├── selmulti.ngdoc │ │ │ ├── nodomevents.ngdoc │ │ │ ├── uterdir.ngdoc │ │ │ ├── nonassign.ngdoc │ │ │ └── ctreq.ngdoc │ │ ├── ngRepeat │ │ │ ├── iexp.ngdoc │ │ │ ├── iidexp.ngdoc │ │ │ ├── dupes.ngdoc │ │ │ └── badident.ngdoc │ │ ├── $injector │ │ │ ├── pget.ngdoc │ │ │ ├── cdep.ngdoc │ │ │ ├── undef.ngdoc │ │ │ ├── itkn.ngdoc │ │ │ ├── modulerr.ngdoc │ │ │ ├── nomod.ngdoc │ │ │ └── strictdi.ngdoc │ │ ├── $controller │ │ │ ├── noscp.ngdoc │ │ │ └── ctrlfmt.ngdoc │ │ ├── $http │ │ │ └── badreq.ngdoc │ │ └── $rootScope │ │ │ └── infdig.ngdoc │ ├── misc │ │ └── index.ngdoc │ ├── tutorial │ │ ├── the_end.ngdoc │ │ └── step_01.ngdoc │ └── guide │ │ └── ie.ngdoc ├── app │ ├── assets │ │ ├── css │ │ │ └── animations.css │ │ ├── favicon.ico │ │ ├── img │ │ │ ├── bullet.png │ │ │ ├── AngularJS-small.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── glyphicons-halflings-white.png │ │ ├── Error404.html │ │ └── js │ │ │ └── search-worker.js │ ├── e2e │ │ ├── api-docs │ │ │ ├── provider-pages.scenario.js │ │ │ └── service-pages.scenario.js │ │ └── .jshintrc │ ├── src │ │ ├── app.js │ │ ├── versions.js │ │ └── directives.js │ └── test │ │ ├── directivesSpec.js │ │ └── docsSpec.js ├── config │ ├── templates │ │ ├── json-doc.template.json │ │ ├── tutorial.template.html │ │ ├── pages-data.template.js │ │ ├── nav-data.template.js │ │ ├── versions-data.template.js │ │ ├── error.template.html │ │ ├── errorNamespace.template.html │ │ └── runnableExample.template.html │ ├── tag-defs │ │ ├── sortOrder.js │ │ └── tutorial-step.js │ ├── services │ │ ├── errorNamespaceMap.js │ │ ├── getMinerrInfo.js │ │ ├── getVersion.js │ │ └── deployments │ │ │ ├── debug.js │ │ │ ├── default.js │ │ │ └── jquery.js │ ├── inline-tag-defs │ │ └── type.js │ └── processors │ │ ├── versions-data.js │ │ └── index-page.js ├── img │ ├── helloworld.png │ ├── angular_parts.png │ ├── form_data_flow.png │ ├── helloworld_2way.png │ ├── guide │ │ ├── concepts-view.png │ │ ├── concepts-scope.png │ │ ├── dom_scope_final.png │ │ ├── forms-debounce.gif │ │ ├── scenario_runner.png │ │ ├── concepts-directive.png │ │ ├── concepts-runtime.png │ │ ├── concepts-startup.png │ │ ├── di_sequence_final.png │ │ ├── simple_scope_final.png │ │ ├── forms-update-on-blur.gif │ │ ├── concepts-databinding1.png │ │ ├── concepts-databinding2.png │ │ ├── concepts-module-service.png │ │ ├── hashbang_vs_regular_url.jpg │ │ ├── concepts-module-injector.png │ │ └── concepts-scope-watch-strategies.png │ ├── One_Way_Data_Binding.png │ ├── Two_Way_Data_Binding.png │ └── tutorial │ │ ├── tutorial_00.png │ │ ├── tutorial_02.png │ │ ├── tutorial_03.png │ │ ├── tutorial_04.png │ │ ├── tutorial_05.png │ │ ├── tutorial_05.pptx │ │ ├── catalog_screen.png │ │ ├── tutorial_00_final.png │ │ ├── tutorial_07_final.png │ │ ├── xhr_service_final.png │ │ ├── tutorial_08-09_final.png │ │ └── tutorial_10-11_final.png ├── bower.json └── protractor-conf.js ├── logs └── .gitignore ├── test ├── e2e │ ├── tools │ │ ├── .jshintrc │ │ ├── index.js │ │ ├── util.js │ │ └── middleware.js │ ├── fixtures │ │ ├── .jshintrc │ │ ├── sample │ │ │ ├── script.js │ │ │ └── index.html │ │ └── input-hidden │ │ │ └── index.html │ └── tests │ │ ├── .jshintrc │ │ ├── sampleSpec.js │ │ ├── helpers │ │ └── main.js │ │ └── input-hidden.spec.js ├── jquery_alias.js ├── jquery_remove.js ├── ngScenario │ ├── e2e │ │ ├── style.css │ │ ├── Runner-compiled.html │ │ └── Runner.html │ ├── mocks.js │ ├── output │ │ ├── jsonSpec.js │ │ └── objectSpec.js │ └── ScenarioSpec.js ├── ng │ ├── documentSpec.js │ ├── windowSpec.js │ ├── rootElementSpec.js │ ├── directive │ │ ├── ngClickSpec.js │ │ ├── ngKeySpec.js │ │ ├── ngSrcsetSpec.js │ │ ├── scriptSpec.js │ │ ├── ngInitSpec.js │ │ ├── ngNonBindableSpec.js │ │ └── ngCloakSpec.js │ ├── exceptionHandlerSpec.js │ ├── asyncCallbackSpec.js │ ├── filterSpec.js │ └── localeSpec.js ├── stringifySpec.js └── ngSanitize │ └── directive │ └── ngBindHtmlSpec.js ├── .jshintignore ├── src ├── module.suffix ├── publishExternalApis.js ├── ng │ ├── directive │ │ ├── style.js │ │ ├── directives.js │ │ ├── ngNonBindable.js │ │ └── a.js │ ├── asyncCallback.js │ ├── rootElement.js │ └── document.js ├── ngCookies │ └── .jshintrc ├── ngResource │ └── .jshintrc ├── ngTouch │ ├── .jshintrc │ └── touch.js ├── ngRoute │ ├── .jshintrc │ └── routeParams.js ├── ngSanitize │ └── .jshintrc ├── loader.prefix ├── ngMock │ └── .jshintrc ├── module.prefix ├── angular.prefix ├── ngAnimate │ └── .jshintrc ├── ngScenario │ ├── angular.prefix │ ├── output │ │ ├── Object.js │ │ └── Json.js │ ├── .jshintrc │ ├── angular.suffix │ └── matchers.js ├── ngLocale │ └── .jshintrc ├── angular.suffix ├── loader.suffix └── stringify.js ├── .jshintrc ├── images ├── favicon.ico ├── css │ ├── arrow_left.gif │ ├── arrow_right.gif │ └── indicator-wait.png ├── docs │ ├── Diagrams.graffle │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image4.png │ │ ├── image8.png │ │ ├── image9.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ ├── guide │ │ ├── concepts.graffle │ │ │ ├── image1.png │ │ │ ├── image4.png │ │ │ └── image5.png │ │ └── simple_scope.graffle │ │ │ ├── image7.png │ │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ └── tutorial │ │ ├── simple_scope.graffle │ │ ├── image7.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── tutorial_02.graffle │ │ ├── image11.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── tutorial_03.graffle │ │ ├── image13.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── tutorial_04.graffle │ │ ├── image15.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── tutorial_07.graffle │ │ ├── image9.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── tutorial_proto.graffle │ │ ├── image7.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ ├── tutorial_08-09.graffle │ │ ├── image10.png │ │ └── QuickLook │ │ │ ├── Preview.pdf │ │ │ └── Thumbnail.tiff │ │ └── tutorial_10-11.graffle │ │ ├── image10.png │ │ └── QuickLook │ │ ├── Preview.pdf │ │ └── Thumbnail.tiff └── logo │ ├── AngularJS.graffle │ ├── data.plist │ ├── image1.png │ └── image2.png │ ├── AngularJS.exports │ ├── AngularJS.eps │ ├── AngularJS.pdf │ ├── AngularJS-huge.png │ ├── AngularJS-large.png │ ├── AngularJS-small.png │ └── AngularJS-medium.png │ └── AngularJS-Shield.exports │ ├── AngularJS-Shield.pdf │ ├── AngularJS-Shield-huge.png │ ├── AngularJS-Shield-large.png │ ├── AngularJS-Shield-medium.png │ └── AngularJS-Shield-small.png ├── benchmarks ├── largetable-bp │ ├── jquery-noop.js │ └── bp.conf.js ├── event-delegation-bp │ ├── bp.conf.js │ └── app.js ├── parsed-expressions-bp │ └── bp.conf.js ├── orderby-bp │ ├── bp.conf.js │ └── app.js └── README.md ├── check-size.sh ├── i18n ├── run-tests.sh ├── generate.sh ├── src │ └── util.js ├── e2e │ ├── runner.html │ ├── localeTest_cs.html │ ├── localeTest_de.html │ ├── localeTest_es.html │ ├── localeTest_sk.html │ └── localeTest_zh.html ├── README.md ├── spec │ └── utilSpec.js └── update-closure.sh ├── lib ├── browserstack │ ├── start_tunnel.sh │ ├── teardown_tunnel.sh │ └── start_tunnel.js ├── saucelabs │ └── teardown_tunnel.sh └── promises-aplus │ └── promises-aplus-test-adapter.js ├── scripts ├── travis │ ├── tear_down_browser_provider.sh │ ├── npm-bundle-deps.sh │ ├── print_logs.sh │ ├── before_build.sh │ ├── start_browser_provider.sh │ ├── wait_for_browser_provider.sh │ └── build.sh ├── jenkins │ ├── set-node-version.sh │ ├── master.sh │ ├── undo-release.sh │ └── build.sh ├── github-actions │ ├── tag-release.sh │ └── release.sh ├── angular.js │ ├── tag-release.sh │ └── untag-release.sh ├── npm │ └── clean-shrinkwrap.js ├── code.angularjs.org │ └── unpublish.sh └── bower │ └── unpublish.sh ├── css └── angular.css ├── bower.json ├── .editorconfig ├── .jshintrc-base ├── .gitignore ├── protractor-conf.js ├── karma-modules.conf.js ├── karma-docs.conf.js ├── karma-jqlite.conf.js ├── karma-jquery.conf.js ├── init-repo.sh ├── .github └── workflows │ ├── build_1_3_x.yml │ ├── check_cve_number.yml │ └── release.yml ├── protractor-shared-conf.js ├── README.closure.md ├── protractor-jenkins-conf.js └── LICENSE /docs/content/notes/empty.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/app/assets/css/animations.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /test/e2e/tools/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true 3 | } -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | lib/htmlparser/** 3 | -------------------------------------------------------------------------------- /src/module.suffix: -------------------------------------------------------------------------------- 1 | 2 | })(window, window.angular); 3 | -------------------------------------------------------------------------------- /docs/config/templates/json-doc.template.json: -------------------------------------------------------------------------------- 1 | {$ doc.data | json $} -------------------------------------------------------------------------------- /src/publishExternalApis.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | publishExternalAPI(angular); 4 | -------------------------------------------------------------------------------- /docs/config/templates/tutorial.template.html: -------------------------------------------------------------------------------- 1 | {% include 'overview.template.html' %} 2 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ".jshintrc-base", 3 | "node": true, 4 | "globals": {} 5 | } 6 | -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/favicon.ico -------------------------------------------------------------------------------- /docs/img/helloworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/helloworld.png -------------------------------------------------------------------------------- /benchmarks/largetable-bp/jquery-noop.js: -------------------------------------------------------------------------------- 1 | //Override me with ?jquery=/bower_components/jquery/dist/jquery.js 2 | -------------------------------------------------------------------------------- /docs/app/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/app/assets/favicon.ico -------------------------------------------------------------------------------- /docs/img/angular_parts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/angular_parts.png -------------------------------------------------------------------------------- /docs/img/form_data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/form_data_flow.png -------------------------------------------------------------------------------- /images/css/arrow_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/css/arrow_left.gif -------------------------------------------------------------------------------- /images/css/arrow_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/css/arrow_right.gif -------------------------------------------------------------------------------- /docs/img/helloworld_2way.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/helloworld_2way.png -------------------------------------------------------------------------------- /images/css/indicator-wait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/css/indicator-wait.png -------------------------------------------------------------------------------- /test/e2e/tools/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | middleware: require('./middleware') 5 | }; 6 | -------------------------------------------------------------------------------- /docs/app/assets/img/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/app/assets/img/bullet.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-view.png -------------------------------------------------------------------------------- /docs/img/One_Way_Data_Binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/One_Way_Data_Binding.png -------------------------------------------------------------------------------- /docs/img/Two_Way_Data_Binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/Two_Way_Data_Binding.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-scope.png -------------------------------------------------------------------------------- /docs/img/guide/dom_scope_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/dom_scope_final.png -------------------------------------------------------------------------------- /docs/img/guide/forms-debounce.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/forms-debounce.gif -------------------------------------------------------------------------------- /docs/img/guide/scenario_runner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/scenario_runner.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_00.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_02.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_03.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_04.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_05.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_05.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_05.pptx -------------------------------------------------------------------------------- /docs/img/guide/concepts-directive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-directive.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-runtime.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-startup.png -------------------------------------------------------------------------------- /docs/img/guide/di_sequence_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/di_sequence_final.png -------------------------------------------------------------------------------- /docs/img/guide/simple_scope_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/simple_scope_final.png -------------------------------------------------------------------------------- /docs/img/tutorial/catalog_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/catalog_screen.png -------------------------------------------------------------------------------- /docs/app/assets/img/AngularJS-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/app/assets/img/AngularJS-small.png -------------------------------------------------------------------------------- /docs/img/guide/forms-update-on-blur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/forms-update-on-blur.gif -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_00_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_00_final.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_07_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_07_final.png -------------------------------------------------------------------------------- /docs/img/tutorial/xhr_service_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/xhr_service_final.png -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/image1.png -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/image2.png -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/image4.png -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/image8.png -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/image9.png -------------------------------------------------------------------------------- /src/ng/directive/style.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var styleDirective = valueFn({ 4 | restrict: 'E', 5 | terminal: false 6 | }); 7 | -------------------------------------------------------------------------------- /docs/img/guide/concepts-databinding1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-databinding1.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-databinding2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-databinding2.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-module-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-module-service.png -------------------------------------------------------------------------------- /docs/img/guide/hashbang_vs_regular_url.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/hashbang_vs_regular_url.jpg -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_08-09_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_08-09_final.png -------------------------------------------------------------------------------- /docs/img/tutorial/tutorial_10-11_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/tutorial/tutorial_10-11_final.png -------------------------------------------------------------------------------- /images/logo/AngularJS.graffle/data.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.graffle/data.plist -------------------------------------------------------------------------------- /images/logo/AngularJS.graffle/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.graffle/image1.png -------------------------------------------------------------------------------- /images/logo/AngularJS.graffle/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.graffle/image2.png -------------------------------------------------------------------------------- /check-size.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | grunt minify 4 | gzip -c < build/angular.min.js > build/angular.min.js.gzip 5 | ls -l build/angular.min.* 6 | -------------------------------------------------------------------------------- /docs/app/assets/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/app/assets/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-module-injector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-module-injector.png -------------------------------------------------------------------------------- /i18n/run-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | PARENT_DIR="$(dirname "$0")" 5 | 6 | ../node_modules/.bin/jasmine-node "$PARENT_DIR"/spec/ 7 | -------------------------------------------------------------------------------- /images/logo/AngularJS.exports/AngularJS.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.exports/AngularJS.eps -------------------------------------------------------------------------------- /images/logo/AngularJS.exports/AngularJS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.exports/AngularJS.pdf -------------------------------------------------------------------------------- /src/ngCookies/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "browser": true, 4 | "globals": { 5 | "angular": false 6 | } 7 | } -------------------------------------------------------------------------------- /src/ngResource/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "browser": true, 4 | "globals": { 5 | "angular": false 6 | } 7 | } -------------------------------------------------------------------------------- /test/jquery_alias.js: -------------------------------------------------------------------------------- 1 | /* global _jQuery: true, _jqLiteMode: true */ 2 | 'use strict'; 3 | 4 | var _jQuery = jQuery, 5 | _jqLiteMode = false; 6 | -------------------------------------------------------------------------------- /images/docs/guide/concepts.graffle/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/guide/concepts.graffle/image1.png -------------------------------------------------------------------------------- /images/docs/guide/concepts.graffle/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/guide/concepts.graffle/image4.png -------------------------------------------------------------------------------- /images/docs/guide/concepts.graffle/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/guide/concepts.graffle/image5.png -------------------------------------------------------------------------------- /images/docs/guide/simple_scope.graffle/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/guide/simple_scope.graffle/image7.png -------------------------------------------------------------------------------- /images/logo/AngularJS.exports/AngularJS-huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.exports/AngularJS-huge.png -------------------------------------------------------------------------------- /images/logo/AngularJS.exports/AngularJS-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.exports/AngularJS-large.png -------------------------------------------------------------------------------- /images/logo/AngularJS.exports/AngularJS-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.exports/AngularJS-small.png -------------------------------------------------------------------------------- /lib/browserstack/start_tunnel.sh: -------------------------------------------------------------------------------- 1 | export BROWSER_STACK_ACCESS_KEY=`echo $BROWSER_STACK_ACCESS_KEY | rev` 2 | 3 | node ./lib/browserstack/start_tunnel.js & 4 | -------------------------------------------------------------------------------- /docs/app/assets/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/app/assets/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/img/guide/concepts-scope-watch-strategies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/docs/img/guide/concepts-scope-watch-strategies.png -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/simple_scope.graffle/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/simple_scope.graffle/image7.png -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_02.graffle/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_02.graffle/image11.png -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_03.graffle/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_03.graffle/image13.png -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_04.graffle/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_04.graffle/image15.png -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_07.graffle/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_07.graffle/image9.png -------------------------------------------------------------------------------- /images/logo/AngularJS.exports/AngularJS-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS.exports/AngularJS-medium.png -------------------------------------------------------------------------------- /scripts/travis/tear_down_browser_provider.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Has to be run from project root directory. 3 | 4 | ./lib/${BROWSER_PROVIDER}/teardown_tunnel.sh 5 | -------------------------------------------------------------------------------- /test/e2e/fixtures/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "browser": true, 3 | "globals": { 4 | "angular": false, 5 | "jQuery": false, 6 | "$": false 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /test/e2e/fixtures/sample/script.js: -------------------------------------------------------------------------------- 1 | angular.module("test", []). 2 | controller("TestCtrl", function($scope) { 3 | $scope.text = "Hello, world!"; 4 | }); 5 | -------------------------------------------------------------------------------- /images/docs/Diagrams.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/Diagrams.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_proto.graffle/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_proto.graffle/image7.png -------------------------------------------------------------------------------- /scripts/jenkins/set-node-version.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Install nvm for this shell 4 | source ~/.nvm/nvm.sh 5 | 6 | # Use node.js at 4.2.x 7 | nvm install 4.2 8 | -------------------------------------------------------------------------------- /test/jquery_remove.js: -------------------------------------------------------------------------------- 1 | /* global _jQuery: true, _jqLiteMode: true */ 2 | 'use strict'; 3 | 4 | var _jQuery = jQuery.noConflict(true), 5 | _jqLiteMode = true; 6 | -------------------------------------------------------------------------------- /docs/config/tag-defs/sortOrder.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | name: 'sortOrder', 3 | transforms: function(doc, tag, value) { 4 | return parseInt(value, 10); 5 | } 6 | }; -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_08-09.graffle/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_08-09.graffle/image10.png -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_10-11.graffle/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_10-11.graffle/image10.png -------------------------------------------------------------------------------- /images/logo/AngularJS-Shield.exports/AngularJS-Shield.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS-Shield.exports/AngularJS-Shield.pdf -------------------------------------------------------------------------------- /lib/browserstack/teardown_tunnel.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e -o pipefail 4 | 5 | 6 | echo "Shutting down Browserstack tunnel" 7 | echo "TODO: implement me" 8 | exit 1 -------------------------------------------------------------------------------- /src/ngTouch/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "browser": true, 4 | "globals": { 5 | "angular": false, 6 | "ngTouch": false 7 | } 8 | } -------------------------------------------------------------------------------- /docs/config/templates/pages-data.template.js: -------------------------------------------------------------------------------- 1 | // Meta data used by the AngularJS docs app 2 | angular.module('pagesData', []) 3 | .value('NG_PAGES', {$ doc.pages | json $}); 4 | -------------------------------------------------------------------------------- /src/ngRoute/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "browser": true, 4 | "globals": { 5 | "angular": false, 6 | "ngRouteModule": false 7 | } 8 | } -------------------------------------------------------------------------------- /docs/config/templates/nav-data.template.js: -------------------------------------------------------------------------------- 1 | // Meta data used by the AngularJS docs app 2 | angular.module('navData', []) 3 | .value('NG_NAVIGATION', {$ doc.areas | json $}); 4 | -------------------------------------------------------------------------------- /i18n/generate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | BASE_DIR=`dirname $0` 6 | cd $BASE_DIR 7 | 8 | ./run-tests.sh 9 | 10 | node src/closureSlurper.js 11 | 12 | 13 | -------------------------------------------------------------------------------- /images/docs/guide/simple_scope.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/guide/simple_scope.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_02.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_02.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_03.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_03.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_04.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_04.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_07.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_07.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/logo/AngularJS-Shield.exports/AngularJS-Shield-huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS-Shield.exports/AngularJS-Shield-huge.png -------------------------------------------------------------------------------- /images/docs/guide/simple_scope.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/guide/simple_scope.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/simple_scope.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/simple_scope.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/logo/AngularJS-Shield.exports/AngularJS-Shield-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS-Shield.exports/AngularJS-Shield-large.png -------------------------------------------------------------------------------- /images/logo/AngularJS-Shield.exports/AngularJS-Shield-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS-Shield.exports/AngularJS-Shield-medium.png -------------------------------------------------------------------------------- /images/logo/AngularJS-Shield.exports/AngularJS-Shield-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/logo/AngularJS-Shield.exports/AngularJS-Shield-small.png -------------------------------------------------------------------------------- /src/ngSanitize/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "browser": true, 4 | "globals": { 5 | "angular": false, 6 | "htmlSanitizeWriter": false 7 | } 8 | } -------------------------------------------------------------------------------- /test/ngScenario/e2e/style.css: -------------------------------------------------------------------------------- 1 | th { 2 | text-align: left; 3 | } 4 | 5 | tr { 6 | border: 1px solid black; 7 | } 8 | 9 | .redbox { 10 | background-color: red; 11 | } 12 | -------------------------------------------------------------------------------- /images/docs/tutorial/simple_scope.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/simple_scope.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_02.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_02.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_03.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_03.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_04.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_04.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_07.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_07.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_08-09.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_08-09.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_10-11.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_10-11.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_proto.graffle/QuickLook/Preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_proto.graffle/QuickLook/Preview.pdf -------------------------------------------------------------------------------- /src/loader.prefix: -------------------------------------------------------------------------------- 1 | /** 2 | * @license AngularJS v"NG_VERSION_FULL" 3 | * (c) 2010-2014 Google, Inc. http://angularjs.org 4 | * License: MIT 5 | */ 6 | 'use strict'; 7 | (function() { 8 | -------------------------------------------------------------------------------- /src/ngMock/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "browser": true, 4 | "globals": { 5 | "angular": false, 6 | "expect": false, 7 | "jQuery": false 8 | } 9 | } -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_08-09.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_08-09.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_10-11.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_10-11.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /images/docs/tutorial/tutorial_proto.graffle/QuickLook/Thumbnail.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bonitasoft/angular.js/v1.3.x/images/docs/tutorial/tutorial_proto.graffle/QuickLook/Thumbnail.tiff -------------------------------------------------------------------------------- /src/module.prefix: -------------------------------------------------------------------------------- 1 | /** 2 | * @license AngularJS v"NG_VERSION_FULL" 3 | * (c) 2010-2014 Google, Inc. http://angularjs.org 4 | * License: MIT 5 | */ 6 | (function(window, angular, undefined) { 7 | -------------------------------------------------------------------------------- /src/angular.prefix: -------------------------------------------------------------------------------- 1 | /** 2 | * @license AngularJS v"NG_VERSION_FULL" 3 | * (c) 2010-2014 Google, Inc. http://angularjs.org 4 | * License: MIT 5 | */ 6 | (function(window, document, undefined) { 7 | -------------------------------------------------------------------------------- /src/ngAnimate/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../.jshintrc-base", 3 | "maxlen": false, /* ngAnimate docs contain wide tables */ 4 | "browser": true, 5 | "globals": { 6 | "angular": false 7 | } 8 | } -------------------------------------------------------------------------------- /test/e2e/tests/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "globals": { 4 | "describe": false, 5 | "ddescribe": false, 6 | "xdescribe": false, 7 | "it": false, 8 | "xit": false, 9 | "iit": false 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /test/ng/documentSpec.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | describe('$document', function() { 4 | 5 | 6 | it("should inject $document", inject(function($document) { 7 | expect($document).toEqual(jqLite(document)); 8 | })); 9 | }); 10 | -------------------------------------------------------------------------------- /docs/config/templates/versions-data.template.js: -------------------------------------------------------------------------------- 1 | // Meta data used by the AngularJS docs app 2 | angular.module('versionsData', []) 3 | .value('NG_VERSION', {$ doc.currentVersion | json $}) 4 | .value('NG_VERSIONS', {$ doc.versions | json $}); 5 | -------------------------------------------------------------------------------- /docs/content/error/$animate/notcsel.ngdoc: -------------------------------------------------------------------------------- 1 | @ngdoc error 2 | @name $animate:notcsel 3 | @fullName Not class CSS selector 4 | @description 5 | 6 | Expecting a CSS selector for class. Class selectors must start with `.`, for example: `.my-class-name`. 7 | -------------------------------------------------------------------------------- /src/ngScenario/angular.prefix: -------------------------------------------------------------------------------- 1 | /** 2 | * @license AngularJS v"NG_VERSION_FULL" 3 | * (c) 2010-2014 Google, Inc. http://angularjs.org 4 | * License: MIT 5 | */ 6 | (function(window, document){ 7 | var _jQuery = window.jQuery.noConflict(true); 8 | -------------------------------------------------------------------------------- /benchmarks/event-delegation-bp/bp.conf.js: -------------------------------------------------------------------------------- 1 | module.exports = function(config) { 2 | config.set({ 3 | scripts: [{ 4 | id: 'angular', 5 | src: '/build/angular.js' 6 | },{ 7 | src: 'app.js', 8 | }] 9 | }); 10 | }; 11 | -------------------------------------------------------------------------------- /docs/content/error/ng/cpta.ngdoc: -------------------------------------------------------------------------------- 1 | @ngdoc error 2 | @name ng:cpta 3 | @fullName Copying TypedArray 4 | @description 5 | 6 | Copying TypedArray's with a destination is not supported because TypedArray 7 | objects can not be mutated, they are fixed length. 8 | -------------------------------------------------------------------------------- /test/e2e/fixtures/sample/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
{{text}}
5 |The page you requested does not exist. Perhaps you were looking for something else...
4 | 5 |