diff --git a/respondjs.install b/respondjs.install index 47188f2..45333eb 100644 --- a/respondjs.install +++ b/respondjs.install @@ -1,5 +1,7 @@ @libraries. The module is using its included copy at @default.', array( - '!respondjs' => l('respond.min.js', 'https://raw.github.com/scottjehl/Respond/master/respond.min.js'), + '!respondjs' => l('respond.min.js', RESPONDJS_DOWNLOAD_URI), '@libraries' => 'sites/all/libraries/respondjs', '@default' => drupal_get_path('module','respondjs') . '/lib') ); @@ -41,7 +43,9 @@ function respondjs_requirements($phase) { if (!file_exists($library_path)) { $requirements['respondjs']['value'] = t('Respond.js is not correctly installed'); $requirements['respondjs']['severity'] = REQUIREMENT_ERROR; - $requirements['respondjs']['description'] = t('Please install Respond.js in the repsondjs folder under /lib'); + $requirements['respondjs']['description'] = t('Please install !respondjs in the repsondjs folder under /lib', array( + '!respondjs' => l('respond.min.js', RESPONDJS_DOWNLOAD_URI), + )); } } return $requirements;