From f524acb31684677f9c3ee8aa1a95c3ffafa0e397 Mon Sep 17 00:00:00 2001 From: uu59 Date: Wed, 18 Jun 2014 14:19:55 +0900 Subject: [PATCH] Fix #32 do not width calculation by DataTable --- app/views/misc/information.html.haml | 1 + app/views/plugins/installed.html.haml | 1 + app/views/plugins/recommended.html.haml | 1 + 3 files changed, 3 insertions(+) diff --git a/app/views/misc/information.html.haml b/app/views/misc/information.html.haml index 50766f4..cee12d7 100644 --- a/app/views/misc/information.html.haml +++ b/app/views/misc/information.html.haml @@ -54,6 +54,7 @@ :javascript $(document).ready(function() { $('#env-table').dataTable({ + "autoWidth": false, "ordering": true, "paging": false, "info": false, diff --git a/app/views/plugins/installed.html.haml b/app/views/plugins/installed.html.haml index 1c832eb..4e79c63 100644 --- a/app/views/plugins/installed.html.haml +++ b/app/views/plugins/installed.html.haml @@ -57,6 +57,7 @@ :javascript $(document).ready(function() { $('#plugins-table').dataTable({ + "autoWidth": false, "ordering": true, "paging": false, "info": false, diff --git a/app/views/plugins/recommended.html.haml b/app/views/plugins/recommended.html.haml index af9f23f..662ef8b 100644 --- a/app/views/plugins/recommended.html.haml +++ b/app/views/plugins/recommended.html.haml @@ -31,6 +31,7 @@ :javascript $(document).ready(function() { $('#plugins-table').dataTable({ + "autoWidth": false, "ordering": true, "paging": false, "info": false,