Merge branch 'develop' of github.com:grafana/grafana into develop

This commit is contained in:
Torkel Ödegaard
2015-02-12 10:34:52 +01:00
4 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@@ -17,5 +17,6 @@ src/css/*.min.css
/data/*
/bin/*
/grafana-pro
/grafana
grafana.custom.ini

View File

@@ -43,7 +43,8 @@ godep restore (will pull down all golang lib dependecies in your current GOPATH)
go build -o ./bin/grafana .
```
To build less to css for frontend:
To build less to css for the frontend you will need a recent version of of node (v0.12.0),
npm (v2.5.0) and grunt (v0.4.5). Run the following:
```
npm install

View File

@@ -106,6 +106,7 @@ func importDashboard(path string, accountId int64) error {
if err := jsonParser.Decode(&dash.Data); err != nil {
return err
}
dash.Data["id"] = nil
cmd := m.SaveDashboardCommand{
AccountId: accountId,

View File

@@ -24,6 +24,7 @@ function (angular, kbn) {
return;
}
var title = kbn.slugifyForUrl(window.grafanaImportDashboard.title);
window.grafanaImportDashboard.id = null;
$location.path('/dashboard/import/' + title);
});
};