├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── code-box ├── code-box.html └── code-example.html ├── css ├── print │ ├── paper.css │ └── pdf.css ├── reveal.css ├── reveal.min.css └── theme │ ├── README.md │ ├── firebase.css │ ├── firebase.css.map │ ├── font │ └── Gotham-Thin.otf │ ├── source │ └── firebase.scss │ └── template │ ├── mixins.scss │ ├── settings.scss │ └── theme.scss ├── full-stack-clients.psd ├── full-stack.png ├── full-stack.psd ├── images ├── HTML5.png ├── Realtime-sync-anim.gif ├── angularjs.png ├── api.png ├── auth.png ├── backbonejs.png ├── backend-reqs (1).gif ├── backend-reqs.gif ├── clients.png ├── clients.psd ├── data-box.png ├── data-box.psd ├── database.png ├── docs-site.png ├── emberjs.png ├── fb-arch.png ├── firebase-logo.png ├── full-stack-clients.png ├── full-stack.png ├── gdocs4.gif ├── hosting-box.png ├── iphone.png ├── laptop.png ├── login-box.png ├── nexus.png ├── offline.png ├── platforms.png ├── react.png ├── realtime-api.png ├── security-box.png ├── server.png └── simple-api.png ├── index.html ├── js ├── .gitignore └── reveal.js ├── lib ├── css │ └── zenburn.css ├── font │ ├── league_gothic-webfont.eot │ ├── league_gothic-webfont.svg │ ├── league_gothic-webfont.ttf │ ├── league_gothic-webfont.woff │ └── league_gothic_license └── js │ ├── classList.js │ ├── head.min.js │ └── html5shiv.js ├── package.json ├── plugin ├── highlight │ └── highlight.js ├── leap │ └── leap.js ├── markdown │ ├── example.html │ ├── example.md │ ├── markdown.js │ └── marked.js ├── math │ └── math.js ├── multiplex │ ├── client.js │ ├── index.js │ └── master.js ├── notes-server │ ├── client.js │ ├── index.js │ └── notes.html ├── notes │ ├── notes.html │ └── notes.js ├── postmessage │ ├── example.html │ └── postmessage.js ├── print-pdf │ └── print-pdf.js ├── remotes │ └── remotes.js ├── search │ └── search.js └── zoom-js │ └── zoom.js └── test ├── examples ├── assets │ ├── image1.png │ └── image2.png ├── barebones.html ├── embedded-media.html ├── math.html └── slide-backgrounds.html ├── qunit-1.12.0.css ├── qunit-1.12.0.js ├── test-markdown-element-attributes.html ├── test-markdown-element-attributes.js ├── test-markdown-slide-attributes.html ├── test-markdown-slide-attributes.js ├── test-markdown.html ├── test-markdown.js ├── test.html └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/bower.json -------------------------------------------------------------------------------- /code-box/code-box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/code-box/code-box.html -------------------------------------------------------------------------------- /code-box/code-example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/code-box/code-example.html -------------------------------------------------------------------------------- /css/print/paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/print/paper.css -------------------------------------------------------------------------------- /css/print/pdf.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/print/pdf.css -------------------------------------------------------------------------------- /css/reveal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/reveal.css -------------------------------------------------------------------------------- /css/reveal.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/reveal.min.css -------------------------------------------------------------------------------- /css/theme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/README.md -------------------------------------------------------------------------------- /css/theme/firebase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/firebase.css -------------------------------------------------------------------------------- /css/theme/firebase.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/firebase.css.map -------------------------------------------------------------------------------- /css/theme/font/Gotham-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/font/Gotham-Thin.otf -------------------------------------------------------------------------------- /css/theme/source/firebase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/source/firebase.scss -------------------------------------------------------------------------------- /css/theme/template/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/template/mixins.scss -------------------------------------------------------------------------------- /css/theme/template/settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/template/settings.scss -------------------------------------------------------------------------------- /css/theme/template/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/css/theme/template/theme.scss -------------------------------------------------------------------------------- /full-stack-clients.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/full-stack-clients.psd -------------------------------------------------------------------------------- /full-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/full-stack.png -------------------------------------------------------------------------------- /full-stack.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/full-stack.psd -------------------------------------------------------------------------------- /images/HTML5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/HTML5.png -------------------------------------------------------------------------------- /images/Realtime-sync-anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/Realtime-sync-anim.gif -------------------------------------------------------------------------------- /images/angularjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/angularjs.png -------------------------------------------------------------------------------- /images/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/api.png -------------------------------------------------------------------------------- /images/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/auth.png -------------------------------------------------------------------------------- /images/backbonejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/backbonejs.png -------------------------------------------------------------------------------- /images/backend-reqs (1).gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/backend-reqs (1).gif -------------------------------------------------------------------------------- /images/backend-reqs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/backend-reqs.gif -------------------------------------------------------------------------------- /images/clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/clients.png -------------------------------------------------------------------------------- /images/clients.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/clients.psd -------------------------------------------------------------------------------- /images/data-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/data-box.png -------------------------------------------------------------------------------- /images/data-box.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/data-box.psd -------------------------------------------------------------------------------- /images/database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/database.png -------------------------------------------------------------------------------- /images/docs-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/docs-site.png -------------------------------------------------------------------------------- /images/emberjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/emberjs.png -------------------------------------------------------------------------------- /images/fb-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/fb-arch.png -------------------------------------------------------------------------------- /images/firebase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/firebase-logo.png -------------------------------------------------------------------------------- /images/full-stack-clients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/full-stack-clients.png -------------------------------------------------------------------------------- /images/full-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/full-stack.png -------------------------------------------------------------------------------- /images/gdocs4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/gdocs4.gif -------------------------------------------------------------------------------- /images/hosting-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/hosting-box.png -------------------------------------------------------------------------------- /images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/iphone.png -------------------------------------------------------------------------------- /images/laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/laptop.png -------------------------------------------------------------------------------- /images/login-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/login-box.png -------------------------------------------------------------------------------- /images/nexus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/nexus.png -------------------------------------------------------------------------------- /images/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/offline.png -------------------------------------------------------------------------------- /images/platforms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/platforms.png -------------------------------------------------------------------------------- /images/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/react.png -------------------------------------------------------------------------------- /images/realtime-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/realtime-api.png -------------------------------------------------------------------------------- /images/security-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/security-box.png -------------------------------------------------------------------------------- /images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/server.png -------------------------------------------------------------------------------- /images/simple-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/images/simple-api.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/index.html -------------------------------------------------------------------------------- /js/.gitignore: -------------------------------------------------------------------------------- 1 | reveal.min.js 2 | -------------------------------------------------------------------------------- /js/reveal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/js/reveal.js -------------------------------------------------------------------------------- /lib/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/css/zenburn.css -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/font/league_gothic-webfont.eot -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/font/league_gothic-webfont.svg -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/font/league_gothic-webfont.ttf -------------------------------------------------------------------------------- /lib/font/league_gothic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/font/league_gothic-webfont.woff -------------------------------------------------------------------------------- /lib/font/league_gothic_license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/font/league_gothic_license -------------------------------------------------------------------------------- /lib/js/classList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/js/classList.js -------------------------------------------------------------------------------- /lib/js/head.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/js/head.min.js -------------------------------------------------------------------------------- /lib/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/lib/js/html5shiv.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/package.json -------------------------------------------------------------------------------- /plugin/highlight/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/highlight/highlight.js -------------------------------------------------------------------------------- /plugin/leap/leap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/leap/leap.js -------------------------------------------------------------------------------- /plugin/markdown/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/markdown/example.html -------------------------------------------------------------------------------- /plugin/markdown/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/markdown/example.md -------------------------------------------------------------------------------- /plugin/markdown/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/markdown/markdown.js -------------------------------------------------------------------------------- /plugin/markdown/marked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/markdown/marked.js -------------------------------------------------------------------------------- /plugin/math/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/math/math.js -------------------------------------------------------------------------------- /plugin/multiplex/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/multiplex/client.js -------------------------------------------------------------------------------- /plugin/multiplex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/multiplex/index.js -------------------------------------------------------------------------------- /plugin/multiplex/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/multiplex/master.js -------------------------------------------------------------------------------- /plugin/notes-server/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/notes-server/client.js -------------------------------------------------------------------------------- /plugin/notes-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/notes-server/index.js -------------------------------------------------------------------------------- /plugin/notes-server/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/notes-server/notes.html -------------------------------------------------------------------------------- /plugin/notes/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/notes/notes.html -------------------------------------------------------------------------------- /plugin/notes/notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/notes/notes.js -------------------------------------------------------------------------------- /plugin/postmessage/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/postmessage/example.html -------------------------------------------------------------------------------- /plugin/postmessage/postmessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/postmessage/postmessage.js -------------------------------------------------------------------------------- /plugin/print-pdf/print-pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/print-pdf/print-pdf.js -------------------------------------------------------------------------------- /plugin/remotes/remotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/remotes/remotes.js -------------------------------------------------------------------------------- /plugin/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/search/search.js -------------------------------------------------------------------------------- /plugin/zoom-js/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/plugin/zoom-js/zoom.js -------------------------------------------------------------------------------- /test/examples/assets/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/examples/assets/image1.png -------------------------------------------------------------------------------- /test/examples/assets/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/examples/assets/image2.png -------------------------------------------------------------------------------- /test/examples/barebones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/examples/barebones.html -------------------------------------------------------------------------------- /test/examples/embedded-media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/examples/embedded-media.html -------------------------------------------------------------------------------- /test/examples/math.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/examples/math.html -------------------------------------------------------------------------------- /test/examples/slide-backgrounds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/examples/slide-backgrounds.html -------------------------------------------------------------------------------- /test/qunit-1.12.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/qunit-1.12.0.css -------------------------------------------------------------------------------- /test/qunit-1.12.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/qunit-1.12.0.js -------------------------------------------------------------------------------- /test/test-markdown-element-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test-markdown-element-attributes.html -------------------------------------------------------------------------------- /test/test-markdown-element-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test-markdown-element-attributes.js -------------------------------------------------------------------------------- /test/test-markdown-slide-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test-markdown-slide-attributes.html -------------------------------------------------------------------------------- /test/test-markdown-slide-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test-markdown-slide-attributes.js -------------------------------------------------------------------------------- /test/test-markdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test-markdown.html -------------------------------------------------------------------------------- /test/test-markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test-markdown.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlearchive/firebase-intro-presentation/HEAD/test/test.js --------------------------------------------------------------------------------