Repository: zeppelin Updated Branches: refs/heads/master 05bc60c07 -> 4c4d06be2
change the jquery-ui css file name ### What is this PR for? The Jquery-ui css file name changed between version and is now missing  ### What type of PR is it? Bug Fix ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-1166 ### How should this be tested? You can run in a paragraph and click inside the input: ``` %angular <script> $( function() { $( "#datepicker" ).datepicker(); } ); </script> <p>Date: <input type="text" id="datepicker"></p> ``` ### Screenshots (if appropriate) Before:  After:  ### Questions: * Does the licenses files need update? No * Is there breaking changes for older versions? No * Does this needs documentation? No Author: Damien CORNEAU <[email protected]> Closes #1177 from corneadoug/ZEPPELIN-1166 and squashes the following commits: c1291be [Damien CORNEAU] change the jquery-ui css file name Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/4c4d06be Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/4c4d06be Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/4c4d06be Branch: refs/heads/master Commit: 4c4d06be21145f62d90ee30417d7037c8bc8b7b8 Parents: 05bc60c Author: Damien CORNEAU <[email protected]> Authored: Wed Jul 13 15:48:14 2016 +0900 Committer: Damien CORNEAU <[email protected]> Committed: Thu Jul 14 14:54:31 2016 +0900 ---------------------------------------------------------------------- zeppelin-web/src/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/4c4d06be/zeppelin-web/src/index.html ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/index.html b/zeppelin-web/src/index.html index 6caff1c..f54881f 100644 --- a/zeppelin-web/src/index.html +++ b/zeppelin-web/src/index.html @@ -47,7 +47,7 @@ limitations under the License. <link rel="stylesheet" href="bower_components/pikaday/css/pikaday.css" /> <link rel="stylesheet" href="bower_components/handsontable/dist/handsontable.css" /> <!-- endbower --> - <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/all.css" /> + <link rel="stylesheet" href="bower_components/jquery-ui/themes/base/jquery-ui.css" /> <!-- endbuild --> <!-- build:css(.tmp) styles/main.css --> <link rel="stylesheet" href="app/home/home.css" />
