1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
Description: Use system JQuery libraries
Author: Marc Dequènes (Duck) <Duck@DuckCorp.org>
Soren Stoutner <soren@debian.org>
Forwarded: not-needed
Last-Update: 2025-08-14
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -1791,7 +1791,9 @@ module ApplicationHelper
# Returns the javascript tags that are included in the html layout head
def javascript_heads
tags = javascript_include_tag(
- 'jquery-3.7.1-ui-1.13.3',
+ 'jquery.min.js',
+ 'jquery-ui.min.js',
+ 'jquery_ujs.js',
'rails-ujs',
'tribute-5.1.3.min',
'tablesort-5.2.1.min.js',
|