* fix: multi lines and spaces issues * fix: eslint operator-linebreak issue * fix: eslint quotes issue * fix: remaining quotes issues * fix: eslint object curly newline issue * fix: eslint object curly spacing issue * fix: eslint brace-style issues * fix: react jsx indent and props issues * fix: eslint trailing spaces issues * fix: eslint linbreak style issue * fix: eslint space unary operator issue * fix: eslint line around directives issue * fix: void and typeof space unary ops issue
15 lines
578 B
JavaScript
15 lines
578 B
JavaScript
(function(define) {
|
|
'use strict';
|
|
|
|
define(['jquery', 'backbone'],
|
|
function($, Backbone) {
|
|
// This Base view is useful when eventing or other features are shared between two or more
|
|
// views. Included with this view in the pubSub object allowing for events to be triggered
|
|
// and shared with other views.
|
|
var BaseDashboardView = Backbone.View.extend({
|
|
pubSub: $.extend({}, Backbone.Events)
|
|
});
|
|
return BaseDashboardView;
|
|
});
|
|
}).call(this, define || RequireJS.define);
|