Skip to content
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request elastic#42 from spalger/setDocTitle
Browse files Browse the repository at this point in the history
Set doc title
  • Loading branch information
spalger committed Oct 22, 2015
2 parents 575328c + e5af8fa commit 44e3b17
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion public/src/controllers/SenseController.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
require('ui/doc_title');


require('ui/modules')
.get('app/sense')
.controller('SenseController', function SenseController($scope) {
.controller('SenseController', function SenseController($scope, docTitle) {

docTitle.change('Sense');

// require the root app code, which expects to execute once the dom is loaded up
require('../app');
Expand Down

0 comments on commit 44e3b17

Please sign in to comment.