fixed jshint and jscs checks
This commit is contained in:
@@ -1,10 +1,9 @@
|
|||||||
define([
|
define([
|
||||||
'angular',
|
'angular',
|
||||||
'jquery',
|
'jquery',
|
||||||
'config',
|
'config'
|
||||||
'underscore'
|
|
||||||
],
|
],
|
||||||
function (angular, $, config, _) {
|
function (angular, $, config) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var module = angular.module('kibana.routes');
|
var module = angular.module('kibana.routes');
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ function (angular, $, kbn, _) {
|
|||||||
function DashboardModel (data) {
|
function DashboardModel (data) {
|
||||||
if (!data) {
|
if (!data) {
|
||||||
data = {};
|
data = {};
|
||||||
};
|
}
|
||||||
|
|
||||||
this.title = data.title;
|
this.title = data.title;
|
||||||
this.tags = data.tags || [];
|
this.tags = data.tags || [];
|
||||||
|
|||||||
Reference in New Issue
Block a user