fixed jshint and jscs checks

This commit is contained in:
Torkel Ödegaard
2014-06-08 16:09:36 +02:00
parent 1eb9efe2d5
commit 61cd5cf4e6
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -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');
+1 -1
View File
@@ -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 || [];