Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion jquery_update.module
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ function jquery_update_get_versions() {
'2.1', '2.2',

// 3.x.
'3.1',
'3.1', '3.4',
)));
}
return $drupal_static_fast['versions'];
Expand Down Expand Up @@ -312,6 +312,10 @@ function jquery_update_jquery_replace(&$javascript, $cdn, $path, $min, $version)
case '3.1':
$trueversion = '3.1.1';
break;

case '3.4':
$trueversion = '3.4.0';
break;
}
$javascript['jquery']['version'] = $trueversion;

Expand Down