You are here

function _itweak_upload_insert_js in iTweak Upload 6.2

Same name and namespace in other branches
  1. 7.3 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'
_itweak_upload_insert_form in ./itweak_upload.admin.inc

File

./itweak_upload.admin.inc, line 304
Administration settings for iTweak Upload module

Code

function _itweak_upload_insert_js($form) {
  drupal_add_js(drupal_get_path('module', 'itweak_upload') . '/itweak_upload.insert.js');
  return $form;
}