client/js/renderer/baserepresentation.js
changeset 293 fba23fde14ba
parent 284 fa8035885814
child 396 b51c25ef4292
equal deleted inserted replaced
292:f67047a16084 293:fba23fde14ba
     1 /* paper-renderer.js */
     1 
     2 "use strict";
       
     3 define(['jquery', 'underscore'], function ($, _) {
     2 define(['jquery', 'underscore'], function ($, _) {
       
     3     'use strict';
     4 
     4 
     5     /* Rkns.Renderer._BaseRepresentation Class */
     5     /* Rkns.Renderer._BaseRepresentation Class */
     6 
     6 
     7     /* In Renkan, a "Representation" is a sort of ViewModel (in the MVVM paradigm) and bridges the gap between
     7     /* In Renkan, a "Representation" is a sort of ViewModel (in the MVVM paradigm) and bridges the gap between
     8      * models (written with Backbone.js) and the view (written with Paper.js)
     8      * models (written with Backbone.js) and the view (written with Paper.js)
    77             }
    77             }
    78         }
    78         }
    79     });
    79     });
    80 
    80 
    81     /* End of Rkns.Renderer._BaseRepresentation Class */
    81     /* End of Rkns.Renderer._BaseRepresentation Class */
    82     
    82 
    83     return _BaseRepresentation;
    83     return _BaseRepresentation;
    84 
    84 
    85 });
    85 });
    86