You are here

function password_toggle_add_js_and_css in Password toggle 7

Wrapper function to add the password toggle JS and CSS files.

2 calls to password_toggle_add_js_and_css()
password_toggle_form_alter in ./password_toggle.module
Implements hook_form_alter().
password_toggle_init in ./password_toggle.module
Implements hook_init().

File

./password_toggle.module, line 51
Simple module that adds a checkbox to toggle password masking on login forms.

Code

function password_toggle_add_js_and_css() {
  $path = drupal_get_path('module', 'password_toggle');
  drupal_add_js($path . '/password_toggle.js');
  drupal_add_css($path . '/password_toggle.css');
}