Commit 61cd5cf4 by Torkel Ödegaard

fixed jshint and jscs checks

parent 1eb9efe2
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, _) { ...@@ -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 || [];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment