├── .gitignore ├── README.md ├── app ├── controllers │ ├── first.js │ ├── home.js │ ├── navigation.js │ └── second.js ├── index.js ├── models │ └── some-model.js ├── routes.js ├── stores │ └── some-store.js └── views │ ├── first.js │ ├── home.js │ ├── navigation.js │ ├── second.js │ └── viewport.js ├── deps └── sencha │ ├── android.css │ ├── apple.css │ ├── bb6.css │ ├── sencha-touch-debug-w-comments.js │ ├── sencha-touch-debug.js │ ├── sencha-touch.css │ └── sencha-touch.js ├── index.html └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/README.md -------------------------------------------------------------------------------- /app/controllers/first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/controllers/first.js -------------------------------------------------------------------------------- /app/controllers/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/controllers/home.js -------------------------------------------------------------------------------- /app/controllers/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/controllers/navigation.js -------------------------------------------------------------------------------- /app/controllers/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/controllers/second.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/index.js -------------------------------------------------------------------------------- /app/models/some-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/models/some-model.js -------------------------------------------------------------------------------- /app/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/routes.js -------------------------------------------------------------------------------- /app/stores/some-store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/stores/some-store.js -------------------------------------------------------------------------------- /app/views/first.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/views/first.js -------------------------------------------------------------------------------- /app/views/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/views/home.js -------------------------------------------------------------------------------- /app/views/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/views/navigation.js -------------------------------------------------------------------------------- /app/views/second.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/views/second.js -------------------------------------------------------------------------------- /app/views/viewport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/app/views/viewport.js -------------------------------------------------------------------------------- /deps/sencha/android.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/android.css -------------------------------------------------------------------------------- /deps/sencha/apple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/apple.css -------------------------------------------------------------------------------- /deps/sencha/bb6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/bb6.css -------------------------------------------------------------------------------- /deps/sencha/sencha-touch-debug-w-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/sencha-touch-debug-w-comments.js -------------------------------------------------------------------------------- /deps/sencha/sencha-touch-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/sencha-touch-debug.js -------------------------------------------------------------------------------- /deps/sencha/sencha-touch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/sencha-touch.css -------------------------------------------------------------------------------- /deps/sencha/sencha-touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/deps/sencha/sencha-touch.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/index.html -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmeinhardt/sencha-touch-mvc/HEAD/style.css --------------------------------------------------------------------------------