Domanda

Ho aggiunto questa riga nel mio tema.info

scripts[] = js/my-file.js

I file sono carichi ma all'ultimo posto. Ho bisogno che venga caricato prima di tutti i moduli JS file.

Come posso impostare il peso?

Ho anche provato (stessi risultati) in template.php con:

function MY-THEME_preprocess_page(&$variables) {

  $file =  path_to_theme() . '/js/my-file.js';
  $options = array('weight' => -1000);

  drupal_add_js($file, $options);

}

Nessuna soluzione corretta

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a drupal.stackexchange
scroll top