You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcp-csc/app
Robert Axelsen 160a1dd766
TT#5020 Implement ngcp-csc account module mockup
9 years ago
..
model TT#4311 Implement ngcp-csc block list module 9 years ago
store TT#5020 Implement ngcp-csc account module mockup 9 years ago
Boot.js TT#4488 CSC UI scaffold 9 years ago
Microloader.js TT#4488 CSC UI scaffold 9 years ago
Readme.md TT#4488 CSC UI scaffold 9 years ago
app.defaults.json TT#4488 CSC UI scaffold 9 years ago
bootstrap-impl.xml TT#4488 CSC UI scaffold 9 years ago
build-impl.xml TT#4488 CSC UI scaffold 9 years ago
build.properties TT#4488 CSC UI scaffold 9 years ago
codegen.json TT#4488 CSC UI scaffold 9 years ago
cordova-impl.xml TT#4488 CSC UI scaffold 9 years ago
cordova.defaults.properties TT#4488 CSC UI scaffold 9 years ago
defaults.properties TT#4488 CSC UI scaffold 9 years ago
development.defaults.properties TT#4488 CSC UI scaffold 9 years ago
development.properties TT#4488 CSC UI scaffold 9 years ago
ext.properties TT#4488 CSC UI scaffold 9 years ago
find-cmd-impl.xml TT#4488 CSC UI scaffold 9 years ago
init-impl.xml TT#4488 CSC UI scaffold 9 years ago
js-impl.xml TT#4488 CSC UI scaffold 9 years ago
locales.js TT#5020 Implement ngcp-csc account module mockup 9 years ago
native.defaults.properties TT#4488 CSC UI scaffold 9 years ago
native.properties TT#4488 CSC UI scaffold 9 years ago
package.defaults.properties TT#4488 CSC UI scaffold 9 years ago
package.properties TT#4488 CSC UI scaffold 9 years ago
packager-impl.xml TT#4488 CSC UI scaffold 9 years ago
page-impl.xml TT#4488 CSC UI scaffold 9 years ago
phonegap-impl.xml TT#4488 CSC UI scaffold 9 years ago
phonegap.defaults.properties TT#4488 CSC UI scaffold 9 years ago
plugin.xml TT#4488 CSC UI scaffold 9 years ago
production.defaults.properties TT#4488 CSC UI scaffold 9 years ago
production.properties TT#4488 CSC UI scaffold 9 years ago
refresh-impl.xml TT#4488 CSC UI scaffold 9 years ago
resolve-impl.xml TT#4488 CSC UI scaffold 9 years ago
resources-impl.xml TT#4488 CSC UI scaffold 9 years ago
sass-impl.xml TT#4488 CSC UI scaffold 9 years ago
sencha.cfg TT#4488 CSC UI scaffold 9 years ago
slice-impl.xml TT#4488 CSC UI scaffold 9 years ago
testing.defaults.properties TT#4488 CSC UI scaffold 9 years ago
testing.properties TT#4488 CSC UI scaffold 9 years ago
watch-impl.xml TT#4488 CSC UI scaffold 9 years ago

Readme.md

./controller

This folder contains the application's global controllers. ViewControllers are located alongside their respective view class in "./view". These controllers are used for routing and other activities that span all views.

./model

This folder contains the application's (data) Model classes.

./view

This folder contains the views as well as ViewModels and ViewControllers depending on the application's architecture. Pure MVC applications may not have ViewModels, for example. For MVCVM applications or MVC applications that use ViewControllers, the following directory structure is recommended:

./view/
    foo/                    # Some meaningful grouping of one or more views
        Foo.js              # The view class
        FooController.js    # The controller for Foo (a ViewController)
        FooModel.js         # The ViewModel for Foo

This structure helps keep these closely related classes together and easily identifiable in most tabbed IDE's or text editors.

./store

This folder contains any number of store instances or types that can then be reused in the application.