File: prefs.js

package info (click to toggle)
php-horde-core 2.27.6%2Bdebian1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 8,368 kB
  • ctags: 6,126
  • sloc: php: 26,083; xml: 4,239; sh: 18; makefile: 11
file content (14 lines) | stat: -rw-r--r-- 318 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * Provides the javascript for the prefs page.
 *
 * @copyright  2014-2015 Horde LLC
 * @license    LGPL-2.1 (http://www.horde.org/licenses/lgpl21)
 */

document.observe('dom:loaded', function() {
    $('appsubmit').hide();

    $('app').observe('change', function() {
        $('appswitch').submit();
    });
});