diff --git a/pom.xml b/pom.xml index 91c7748c1..bf8214e37 100644 --- a/pom.xml +++ b/pom.xml @@ -283,7 +283,7 @@ + url="http://maven.codelibs.org/archive/elasticsearch/plugin/kopf/elasticsearch-kopf-1.5.7.1.zip" /> @@ -296,7 +296,7 @@ + src="${basedir}/target/plugins/elasticsearch-kopf-1.5.7.1.zip" /> diff --git a/src/main/webapp/WEB-INF/view/admin/system/index.jsp b/src/main/webapp/WEB-INF/view/admin/system/index.jsp index 8dfec6616..62628a8be 100644 --- a/src/main/webapp/WEB-INF/view/admin/system/index.jsp +++ b/src/main/webapp/WEB-INF/view/admin/system/index.jsp @@ -13,12 +13,13 @@ -
- +
+
+ diff --git a/src/main/webapp/js/admin/system.js b/src/main/webapp/js/admin/system.js new file mode 100644 index 000000000..b5d3cac43 --- /dev/null +++ b/src/main/webapp/js/admin/system.js @@ -0,0 +1,7 @@ +$(function(){ + var $content = $('#content'); + var $contentFrame = $('#contentFrame'); + $contentFrame.load(function(){ + $(this).height($content.height()); + }); +});