function swfembed_add_js in SWF Embed 7
Same name and namespace in other branches
- 6 swfembed.module \swfembed_add_js()
Add the necessary JavaScript.
1 call to swfembed_add_js()
- theme_swfembed_embed in ./
swfembed.module - Insert the div for the object and prepare JavaScript.
File
- ./
swfembed.module, line 20 - The main file for swfembed.
Code
function swfembed_add_js() {
static $added = FALSE;
if ($added) {
return;
}
$added = TRUE;
$path = drupal_get_path('module', 'swfembed');
drupal_add_js($path . '/jquery.swfembed.js');
drupal_add_js($path . '/behavior.swfembed.js');
}