12345678910111213141516171819202122232425262728293031323334 |
- <?php
- function selectList_init() {
- global $theme;
-
- $admin_theme = variable_get('admin_theme', 0);
-
- if($theme == $admin_theme){
- $mod_path = drupal_get_path('module', 'selectList');
- drupal_add_css($mod_path.'/selectList.css');
- drupal_add_js($mod_path.'/jquery.selectlist.pack.js', array('type'=>'file', 'scope'=>'header', 'group'=>JS_LIBRARY));
- drupal_add_js('jQuery(document).ready(function($) { $("select[multiple="multiple"]:not(.autocomplete-deluxe-form), .selectlist, select#edit-roles, select#edit-modules", ".page-admin").removeAttr("size").selectList(); });', array('type'=>'inline', 'scope'=>'header', 'group'=>JS_THEME));
- }
- }
|