You are here

function simpletest_js_alter in Drupal 8

Same name and namespace in other branches
  1. 7 modules/simpletest/simpletest.module \simpletest_js_alter()

Implements hook_js_alter().

File

core/modules/simpletest/simpletest.module, line 62
Provides testing functionality.

Code

function simpletest_js_alter(&$javascript, AttachedAssetsInterface $assets) {

  // Since SimpleTest is a special use case for the table select, stick the
  // SimpleTest JavaScript above the table select.
  $simpletest = drupal_get_path('module', 'simpletest') . '/simpletest.js';
  if (array_key_exists($simpletest, $javascript) && array_key_exists('core/misc/tableselect.js', $javascript)) {
    $javascript[$simpletest]['weight'] = $javascript['core/misc/tableselect.js']['weight'] - 1;
  }
}