From 5097302bee0403269d35451f5eb2582e2b5ddf71 Mon Sep 17 00:00:00 2001 From: Bharath Date: Tue, 23 Jan 2018 19:25:08 +0530 Subject: [PATCH] Fixed a javascript file name in app/views/pay/index.html.erb The javascript file name in app/views/pay/index.html.erb 'jquery.dataTables.js' is not consistent with the actual JS file in /app/assets/javascripts 'jquery.dataTables.min.js' This commit fixes by renaming the erring line in index.html.erb --- app/views/pay/index.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/pay/index.html.erb b/app/views/pay/index.html.erb index 0f6b15b..b807bc0 100644 --- a/app/views/pay/index.html.erb +++ b/app/views/pay/index.html.erb @@ -146,7 +146,7 @@ -<%= javascript_include_tag "jquery.dataTables.js" %> +<%= javascript_include_tag "jquery.dataTables.min.js" %>