diff --git a/includes/common.inc b/includes/common.inc index ce0efcf4f180d0ccd0b7b97365722dc12267bd23..9b18292f66c83bdd65d6bfde885d6140aa2a9ef2 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -4174,6 +4174,15 @@ function drupal_get_js($scope = 'header', $javascript = NULL, $skip_alter = FALS * ); * @endcode * + * External 'js' and 'css' files can also be loaded. For example: + * @code + * $build['#attached']['js'] = array( + * 'http://code.jquery.com/jquery-1.4.2.min.js' => array( + * 'type' => 'external', + * ), + * ); + * @endcode + * * @param $elements * The structured array describing the data being rendered. * @param $group