function jquery_update_get_replacements in jQuery Update 6
Same name and namespace in other branches
- 6.2 jquery_update.module \jquery_update_get_replacements()
Array of jQuery files to replace if jQuery is loaded.
1 call to jquery_update_get_replacements()
- jquery_update_preprocess_page in ./
jquery_update.module - Implementation of moduleName_preprocess_hook().
File
- ./
jquery_update.module, line 16 - Updates Drupal to use the latest version of jQuery.
Code
function jquery_update_get_replacements() {
return array(
'module' => array(
'misc/farbtastic/farbtastic.js' => 'farbtastic.js',
),
);
}