2013-05-23 05:12:01 +00:00
|
|
|
|
'use strict';
|
2013-07-10 03:05:43 +00:00
|
|
|
|
define(['marionette', 'Mixins/AsModelBoundView'], function (Marionette, AsModelBoundView) {
|
|
|
|
|
var view = Marionette.ItemView.extend({
|
2013-06-19 04:27:41 +00:00
|
|
|
|
template: 'Settings/General/GeneralTemplate'
|
2013-05-23 05:12:01 +00:00
|
|
|
|
}
|
|
|
|
|
);
|
2013-07-10 03:05:43 +00:00
|
|
|
|
|
|
|
|
|
return AsModelBoundView.call(view);
|
2013-05-23 05:12:01 +00:00
|
|
|
|
});
|
|
|
|
|
|