Select Git revision
-
Dean Camera authored
Add svn:eol-style property to source files, so that the line endings are correctly converted to the target system's native end of line style.
Dean Camera authoredAdd svn:eol-style property to source files, so that the line endings are correctly converted to the target system's native end of line style.
EditCamOutputMenuView.js 460 B
/**
* Created by aghassaei on 7/12/15.
*/
define(['jquery', 'underscore', 'menuParent', 'plist', 'text!editCamOutputMenuTemplate'],
function($, _, MenuParentView, plist, template){
return MenuParentView.extend({
events: {
},
_initialize: function(){
},
_makeTemplateJSON: function(){
return _.extend(this.model.toJSON(), plist);
},
template: _.template(template)
});
});