function _itweak_upload_insert_js in iTweak Upload 7.3
Same name and namespace in other branches
- 6.2 itweak_upload.admin.inc \_itweak_upload_insert_js()
Prerender callback - just to load javascript on demand (works on cached forms).
1 string reference to '_itweak_upload_insert_js'
File
- ./
itweak_upload.admin.inc, line 313 - Administration settings for iTweak Upload module @todo: Currently UNUSED in D7. Need to convert to D7 and include into the module.info.
Code
function _itweak_upload_insert_js($form) {
drupal_add_js(drupal_get_path('module', 'itweak_upload') . '/itweak_upload.insert.js');
return $form;
}