equal
deleted
inserted
replaced
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 |
|