Repository: incubator-zeppelin Updated Branches: refs/heads/master 014696197 -> cb9f6f770
Fix master branch build error. master branch build failing with error ``` [INFO] Running "jshint:all" (jshint) task [INFO] [INFO] src/app/home/home.controller.js [INFO] line 27 col 4 Missing semicolon. [INFO] [INFO] â 1 problem [INFO] [INFO] Warning: Task "jshint:all" failed. Use --force to continue. [INFO] [INFO] Aborted due to warnings. ``` This patch fixes the build. Author: Lee moon soo <[email protected]> Closes #217 from Leemoonsoo/hotfix and squashes the following commits: 85b2914 [Lee moon soo] Add missing ';' Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/cb9f6f77 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/cb9f6f77 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/cb9f6f77 Branch: refs/heads/master Commit: cb9f6f7702b4a8a32d2894bd0ab6d58938471e6d Parents: 0146961 Author: Lee moon soo <[email protected]> Authored: Sun Aug 16 08:44:51 2015 -0700 Committer: Lee moon soo <[email protected]> Committed: Sun Aug 16 09:31:50 2015 -0700 ---------------------------------------------------------------------- zeppelin-web/src/app/home/home.controller.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/cb9f6f77/zeppelin-web/src/app/home/home.controller.js ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/app/home/home.controller.js b/zeppelin-web/src/app/home/home.controller.js index d3fba0f..bd2a3b6 100644 --- a/zeppelin-web/src/app/home/home.controller.js +++ b/zeppelin-web/src/app/home/home.controller.js @@ -24,7 +24,7 @@ angular.module('zeppelinWebApp').controller('HomeCtrl', function($scope, noteboo var initHome = function() { websocketMsgSrv.getHomeNotebook(); - } + }; initHome();
