├── .gitignore ├── .versions ├── README.md ├── lib └── client │ ├── modals.coffee │ ├── modals.html │ └── modals.less ├── package.js ├── readme ├── 1.png └── meteor-factory.jpg ├── smart.json └── versions.json /.gitignore: -------------------------------------------------------------------------------- 1 | .build* 2 | -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/.versions -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/README.md -------------------------------------------------------------------------------- /lib/client/modals.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/lib/client/modals.coffee -------------------------------------------------------------------------------- /lib/client/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/lib/client/modals.html -------------------------------------------------------------------------------- /lib/client/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/lib/client/modals.less -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/package.js -------------------------------------------------------------------------------- /readme/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/readme/1.png -------------------------------------------------------------------------------- /readme/meteor-factory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/readme/meteor-factory.jpg -------------------------------------------------------------------------------- /smart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/smart.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yogiben/meteor-autoform-modals/HEAD/versions.json --------------------------------------------------------------------------------