1 /**
  2  * @fileOverview KISSY's MVC Framework for Page Application (Backbone Style)
  3  * @author yiminghe@gmail.com
  4  */
  5 KISSY.add("mvc", function (S, Model, Collection, View, Router, sync) {
  6 
  7     /**
  8      * @namespace
  9      * KISSY MVC Framework.
 10      * @name MVC
 11      */
 12 
 13     return {
 14         sync:sync,
 15         Model:Model,
 16         View:View,
 17         Collection:Collection,
 18         Router:Router
 19     };
 20 }, {
 21     requires:["mvc/model", "mvc/collection", "mvc/view", "mvc/router", "mvc/sync"]
 22 });