├── .bowerrc ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .travis.yml ├── AUTHORS ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bower.json ├── changelog.js ├── dist ├── famous-angular.css ├── famous-angular.js ├── famous-angular.min.css └── famous-angular.min.js ├── docs-generation ├── README.md ├── docs.config.js ├── filters │ └── capital.js ├── generate-versions.js ├── inline-tag-defs │ ├── link.js │ ├── runnableExample.js │ └── type.js ├── processors │ ├── create-folders.js │ ├── index-page.js │ ├── jekyll.js │ ├── keywords.js │ ├── latest-version.js │ ├── pages-data.js │ └── version-data.js ├── tag-defs │ └── index.js └── templates │ ├── api │ ├── api.template.html │ ├── componentGroup.template.html │ ├── controller.template.html │ ├── directive.template.html │ ├── filter.template.html │ ├── function.template.html │ ├── object.template.html │ ├── page.template.html │ ├── provider.template.html │ ├── service.template.html │ ├── type.template.html │ └── utility.template.html │ ├── api_menu.template.html │ ├── api_menu_version.template.html │ ├── api_version_select.template.html │ ├── common.template.html │ ├── examples │ ├── index.template.html │ ├── manifest.template.json │ ├── template.css │ ├── template.html │ ├── template.js │ ├── template.json │ ├── template.protractor │ ├── template.scenario │ └── template.spec │ ├── index.template.html │ ├── lib │ ├── events.template.html │ ├── macros.html │ ├── methods.template.html │ ├── properties.template.html │ ├── returns.template.html │ ├── this.template.html │ └── yaml.template.html │ └── runnableExample.template.html ├── docs └── unstable │ ├── directive │ ├── animate │ │ └── index.md │ ├── faAnimateEnter │ │ └── index.md │ ├── faAnimateHalt │ │ └── index.md │ ├── faAnimateLeave │ │ └── index.md │ ├── faAnimateMove │ │ └── index.md │ ├── faAnimation │ │ └── index.md │ ├── faApp │ │ └── index.md │ ├── faCanvasSurface │ │ └── index.md │ ├── faClick │ │ └── index.md │ ├── faContainerSurface │ │ └── index.md │ ├── faDraggable │ │ └── index.md │ ├── faDrawerLayout │ │ └── index.md │ ├── faEdgeSwapper │ │ └── index.md │ ├── faFlexibleLayout │ │ └── index.md │ ├── faFlipper │ │ └── index.md │ ├── faGridLayout │ │ └── index.md │ ├── faHeaderFooterLayout │ │ └── index.md │ ├── faImageSurface │ │ └── index.md │ ├── faIndex │ │ └── index.md │ ├── faModifier │ │ └── index.md │ ├── faOptions │ │ └── index.md │ ├── faPipeFrom │ │ └── index.md │ ├── faPipeTo │ │ └── index.md │ ├── faRenderNode │ │ └── index.md │ ├── faScrollView │ │ └── index.md │ ├── faSequentialLayout │ │ └── index.md │ ├── faSurface │ │ └── index.md │ ├── faTap │ │ └── index.md │ ├── faTouchend │ │ └── index.md │ ├── faTouchmove │ │ └── index.md │ ├── faTouchstart │ │ └── index.md │ ├── faVideoSurface │ │ └── index.md │ ├── faView │ │ └── index.md │ ├── ngBlur │ │ └── index.md │ ├── ngClick │ │ └── index.md │ ├── ngCopy │ │ └── index.md │ ├── ngCut │ │ └── index.md │ ├── ngDblclick │ │ └── index.md │ ├── ngFocus │ │ └── index.md │ ├── ngKeydown │ │ └── index.md │ ├── ngKeypress │ │ └── index.md │ ├── ngKeyup │ │ └── index.md │ ├── ngMousedown │ │ └── index.md │ ├── ngMouseenter │ │ └── index.md │ ├── ngMouseleave │ │ └── index.md │ ├── ngMousemove │ │ └── index.md │ ├── ngMouseover │ │ └── index.md │ ├── ngMouseup │ │ └── index.md │ ├── ngPaste │ │ └── index.md │ └── ngSubmit │ │ └── index.md │ ├── index.md │ ├── provider │ ├── $famousProvider │ │ └── index.md │ └── famousProvider │ │ └── index.md │ └── service │ ├── $animate │ └── index.md │ ├── $famous │ └── index.md │ ├── $famousDecorator │ └── index.md │ ├── $famousPipe │ └── index.md │ ├── $timeline │ └── index.md │ └── famous │ └── index.md ├── famous-angular-deck.pdf ├── famous-angular.pdf ├── gulpfile.js ├── init_submodules.sh ├── karma.conf.js ├── package.json ├── src ├── scripts │ ├── directives │ │ ├── fa-animate-enter.js │ │ ├── fa-animate-halt.js │ │ ├── fa-animate-leave.js │ │ ├── fa-animate-move.js │ │ ├── fa-animation.js │ │ ├── fa-app.js │ │ ├── fa-canvas-surface.js │ │ ├── fa-click.js │ │ ├── fa-container-surface.js │ │ ├── fa-draggable.js │ │ ├── fa-drawer-layout.js │ │ ├── fa-edge-swapper.js │ │ ├── fa-flexible-layout.js │ │ ├── fa-flipper.js │ │ ├── fa-grid-layout.js │ │ ├── fa-header-footer-layout.js │ │ ├── fa-image-surface.js │ │ ├── fa-index.js │ │ ├── fa-input.js │ │ ├── fa-modifier.js │ │ ├── fa-mouseover.js │ │ ├── fa-options.js │ │ ├── fa-pipe-from.js │ │ ├── fa-pipe-to.js │ │ ├── fa-render-node.js │ │ ├── fa-scrollview.js │ │ ├── fa-sequential-layout.js │ │ ├── fa-surface.js │ │ ├── fa-tap.js │ │ ├── fa-touchend.js │ │ ├── fa-touchmove.js │ │ ├── fa-touchstart.js │ │ ├── fa-video-surface.js │ │ └── fa-view.js │ ├── module.js │ └── services │ │ ├── famous.js │ │ ├── famousAnimate.js │ │ ├── famousDecorator.js │ │ ├── famousPipe.js │ │ └── timeline.js └── styles │ └── famous-angular.css ├── test ├── .jshintrc ├── bootstrap │ └── common.js ├── changelogTest.js ├── directives │ ├── faAppSpec.js │ ├── faCanvasSurfaceSpec.js │ ├── faContainerSurfaceSpec.js │ ├── faDrawerLayoutSpec.js │ ├── faEdgeSwapperSpec.js │ ├── faFlipperSpec.js │ ├── faGridLayoutSpec.js │ ├── faHeaderFooterLayoutSpec.js │ ├── faImageSurfaceSpec.js │ ├── faModifierSpec.js │ ├── faOptionsSpec.js │ ├── faPipeFromSpec.js │ ├── faPipeToSpec.js │ ├── faScrollViewSpec.js │ ├── faSequentialLayoutSpec.js │ └── faSurfaceSpec.js ├── phantomjs-polyfills.js ├── services │ ├── famousAnimateSpec.js │ ├── famousDecoratorSpec.js │ ├── famousSpec.js │ └── timelineSpec.js └── validateCommitMsgTest.js └── validateCommitMsg.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/bower.json -------------------------------------------------------------------------------- /changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/changelog.js -------------------------------------------------------------------------------- /dist/famous-angular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/dist/famous-angular.css -------------------------------------------------------------------------------- /dist/famous-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/dist/famous-angular.js -------------------------------------------------------------------------------- /dist/famous-angular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/dist/famous-angular.min.css -------------------------------------------------------------------------------- /dist/famous-angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/dist/famous-angular.min.js -------------------------------------------------------------------------------- /docs-generation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/README.md -------------------------------------------------------------------------------- /docs-generation/docs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/docs.config.js -------------------------------------------------------------------------------- /docs-generation/filters/capital.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/filters/capital.js -------------------------------------------------------------------------------- /docs-generation/generate-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/generate-versions.js -------------------------------------------------------------------------------- /docs-generation/inline-tag-defs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/inline-tag-defs/link.js -------------------------------------------------------------------------------- /docs-generation/inline-tag-defs/runnableExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/inline-tag-defs/runnableExample.js -------------------------------------------------------------------------------- /docs-generation/inline-tag-defs/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/inline-tag-defs/type.js -------------------------------------------------------------------------------- /docs-generation/processors/create-folders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/create-folders.js -------------------------------------------------------------------------------- /docs-generation/processors/index-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/index-page.js -------------------------------------------------------------------------------- /docs-generation/processors/jekyll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/jekyll.js -------------------------------------------------------------------------------- /docs-generation/processors/keywords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/keywords.js -------------------------------------------------------------------------------- /docs-generation/processors/latest-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/latest-version.js -------------------------------------------------------------------------------- /docs-generation/processors/pages-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/pages-data.js -------------------------------------------------------------------------------- /docs-generation/processors/version-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/processors/version-data.js -------------------------------------------------------------------------------- /docs-generation/tag-defs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/tag-defs/index.js -------------------------------------------------------------------------------- /docs-generation/templates/api/api.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/api.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/componentGroup.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/componentGroup.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/controller.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/controller.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/directive.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/directive.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/filter.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/filter.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/function.template.html: -------------------------------------------------------------------------------- 1 | <@ extends "api/object.template.html" @> 2 | -------------------------------------------------------------------------------- /docs-generation/templates/api/object.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/object.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/page.template.html: -------------------------------------------------------------------------------- 1 | <@ extends "api/object.template.html" @> 2 | -------------------------------------------------------------------------------- /docs-generation/templates/api/provider.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/provider.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/service.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/service.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api/type.template.html: -------------------------------------------------------------------------------- 1 | <@ extends "api/object.template.html" @> 2 | -------------------------------------------------------------------------------- /docs-generation/templates/api/utility.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api/utility.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api_menu.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api_menu.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api_menu_version.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api_menu_version.template.html -------------------------------------------------------------------------------- /docs-generation/templates/api_version_select.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/api_version_select.template.html -------------------------------------------------------------------------------- /docs-generation/templates/common.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/common.template.html -------------------------------------------------------------------------------- /docs-generation/templates/examples/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/examples/index.template.html -------------------------------------------------------------------------------- /docs-generation/templates/examples/manifest.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/examples/manifest.template.json -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.css: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.html: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.js: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.json: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.protractor: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.scenario: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/examples/template.spec: -------------------------------------------------------------------------------- 1 | <$ doc.fileContents $> -------------------------------------------------------------------------------- /docs-generation/templates/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/index.template.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/events.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/events.template.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/macros.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/macros.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/methods.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/methods.template.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/properties.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/properties.template.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/returns.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/returns.template.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/this.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/this.template.html -------------------------------------------------------------------------------- /docs-generation/templates/lib/yaml.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/lib/yaml.template.html -------------------------------------------------------------------------------- /docs-generation/templates/runnableExample.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs-generation/templates/runnableExample.template.html -------------------------------------------------------------------------------- /docs/unstable/directive/animate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/animate/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faAnimateEnter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faAnimateEnter/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faAnimateHalt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faAnimateHalt/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faAnimateLeave/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faAnimateLeave/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faAnimateMove/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faAnimateMove/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faAnimation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faAnimation/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faApp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faApp/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faCanvasSurface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faCanvasSurface/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faClick/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faClick/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faContainerSurface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faContainerSurface/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faDraggable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faDraggable/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faDrawerLayout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faDrawerLayout/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faEdgeSwapper/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faEdgeSwapper/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faFlexibleLayout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faFlexibleLayout/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faFlipper/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faFlipper/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faGridLayout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faGridLayout/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faHeaderFooterLayout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faHeaderFooterLayout/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faImageSurface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faImageSurface/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faIndex/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faIndex/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faModifier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faModifier/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faOptions/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faOptions/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faPipeFrom/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faPipeFrom/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faPipeTo/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faPipeTo/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faRenderNode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faRenderNode/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faScrollView/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faScrollView/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faSequentialLayout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faSequentialLayout/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faSurface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faSurface/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faTap/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faTap/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faTouchend/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faTouchend/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faTouchmove/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faTouchmove/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faTouchstart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faTouchstart/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faVideoSurface/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faVideoSurface/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/faView/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/faView/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngBlur/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngBlur/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngClick/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngClick/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngCopy/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngCopy/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngCut/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngCut/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngDblclick/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngDblclick/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngFocus/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngFocus/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngKeydown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngKeydown/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngKeypress/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngKeypress/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngKeyup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngKeyup/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngMousedown/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngMousedown/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngMouseenter/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngMouseenter/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngMouseleave/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngMouseleave/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngMousemove/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngMousemove/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngMouseover/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngMouseover/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngMouseup/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngMouseup/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngPaste/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngPaste/index.md -------------------------------------------------------------------------------- /docs/unstable/directive/ngSubmit/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/directive/ngSubmit/index.md -------------------------------------------------------------------------------- /docs/unstable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/index.md -------------------------------------------------------------------------------- /docs/unstable/provider/$famousProvider/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/provider/$famousProvider/index.md -------------------------------------------------------------------------------- /docs/unstable/provider/famousProvider/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/provider/famousProvider/index.md -------------------------------------------------------------------------------- /docs/unstable/service/$animate/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/service/$animate/index.md -------------------------------------------------------------------------------- /docs/unstable/service/$famous/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/service/$famous/index.md -------------------------------------------------------------------------------- /docs/unstable/service/$famousDecorator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/service/$famousDecorator/index.md -------------------------------------------------------------------------------- /docs/unstable/service/$famousPipe/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/service/$famousPipe/index.md -------------------------------------------------------------------------------- /docs/unstable/service/$timeline/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/service/$timeline/index.md -------------------------------------------------------------------------------- /docs/unstable/service/famous/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/docs/unstable/service/famous/index.md -------------------------------------------------------------------------------- /famous-angular-deck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/famous-angular-deck.pdf -------------------------------------------------------------------------------- /famous-angular.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/famous-angular.pdf -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/gulpfile.js -------------------------------------------------------------------------------- /init_submodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/init_submodules.sh -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/package.json -------------------------------------------------------------------------------- /src/scripts/directives/fa-animate-enter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-animate-enter.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-animate-halt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-animate-halt.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-animate-leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-animate-leave.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-animate-move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-animate-move.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-animation.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-app.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-canvas-surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-canvas-surface.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-click.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-container-surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-container-surface.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-draggable.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-drawer-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-drawer-layout.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-edge-swapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-edge-swapper.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-flexible-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-flexible-layout.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-flipper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-flipper.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-grid-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-grid-layout.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-header-footer-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-header-footer-layout.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-image-surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-image-surface.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-index.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-input.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-modifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-modifier.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-mouseover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-mouseover.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-options.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-pipe-from.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-pipe-from.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-pipe-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-pipe-to.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-render-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-render-node.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-scrollview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-scrollview.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-sequential-layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-sequential-layout.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-surface.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-tap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-tap.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-touchend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-touchend.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-touchmove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-touchmove.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-touchstart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-touchstart.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-video-surface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-video-surface.js -------------------------------------------------------------------------------- /src/scripts/directives/fa-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/directives/fa-view.js -------------------------------------------------------------------------------- /src/scripts/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/module.js -------------------------------------------------------------------------------- /src/scripts/services/famous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/services/famous.js -------------------------------------------------------------------------------- /src/scripts/services/famousAnimate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/services/famousAnimate.js -------------------------------------------------------------------------------- /src/scripts/services/famousDecorator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/services/famousDecorator.js -------------------------------------------------------------------------------- /src/scripts/services/famousPipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/services/famousPipe.js -------------------------------------------------------------------------------- /src/scripts/services/timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/scripts/services/timeline.js -------------------------------------------------------------------------------- /src/styles/famous-angular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/src/styles/famous-angular.css -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/bootstrap/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/bootstrap/common.js -------------------------------------------------------------------------------- /test/changelogTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/changelogTest.js -------------------------------------------------------------------------------- /test/directives/faAppSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faAppSpec.js -------------------------------------------------------------------------------- /test/directives/faCanvasSurfaceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faCanvasSurfaceSpec.js -------------------------------------------------------------------------------- /test/directives/faContainerSurfaceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faContainerSurfaceSpec.js -------------------------------------------------------------------------------- /test/directives/faDrawerLayoutSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faDrawerLayoutSpec.js -------------------------------------------------------------------------------- /test/directives/faEdgeSwapperSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faEdgeSwapperSpec.js -------------------------------------------------------------------------------- /test/directives/faFlipperSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faFlipperSpec.js -------------------------------------------------------------------------------- /test/directives/faGridLayoutSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faGridLayoutSpec.js -------------------------------------------------------------------------------- /test/directives/faHeaderFooterLayoutSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faHeaderFooterLayoutSpec.js -------------------------------------------------------------------------------- /test/directives/faImageSurfaceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faImageSurfaceSpec.js -------------------------------------------------------------------------------- /test/directives/faModifierSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faModifierSpec.js -------------------------------------------------------------------------------- /test/directives/faOptionsSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faOptionsSpec.js -------------------------------------------------------------------------------- /test/directives/faPipeFromSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faPipeFromSpec.js -------------------------------------------------------------------------------- /test/directives/faPipeToSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faPipeToSpec.js -------------------------------------------------------------------------------- /test/directives/faScrollViewSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faScrollViewSpec.js -------------------------------------------------------------------------------- /test/directives/faSequentialLayoutSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faSequentialLayoutSpec.js -------------------------------------------------------------------------------- /test/directives/faSurfaceSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/directives/faSurfaceSpec.js -------------------------------------------------------------------------------- /test/phantomjs-polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/phantomjs-polyfills.js -------------------------------------------------------------------------------- /test/services/famousAnimateSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/services/famousAnimateSpec.js -------------------------------------------------------------------------------- /test/services/famousDecoratorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/services/famousDecoratorSpec.js -------------------------------------------------------------------------------- /test/services/famousSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/services/famousSpec.js -------------------------------------------------------------------------------- /test/services/timelineSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/services/timelineSpec.js -------------------------------------------------------------------------------- /test/validateCommitMsgTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/test/validateCommitMsgTest.js -------------------------------------------------------------------------------- /validateCommitMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Famous/famous-angular/HEAD/validateCommitMsg.js --------------------------------------------------------------------------------