diff options
author | William Hua <william.hua@canonical.com> | 2013-03-21 01:11:51 -0400 |
---|---|---|
committer | William Hua <william.hua@canonical.com> | 2013-03-21 01:11:51 -0400 |
commit | bb5d7364fcc89d18a9c431344acf56f48fcbc684 (patch) | |
tree | 64d862276ec886ac9d2d5dd16833d9d3af069599 /vapi/libgnomekbd/scripts.js | |
parent | 1eba4ec7bd2d3a746ff929363b8de05df8462965 (diff) | |
download | ayatana-indicator-keyboard-bb5d7364fcc89d18a9c431344acf56f48fcbc684.tar.gz ayatana-indicator-keyboard-bb5d7364fcc89d18a9c431344acf56f48fcbc684.tar.bz2 ayatana-indicator-keyboard-bb5d7364fcc89d18a9c431344acf56f48fcbc684.zip |
Integrate IBus and libgnomekbd.
Diffstat (limited to 'vapi/libgnomekbd/scripts.js')
-rw-r--r-- | vapi/libgnomekbd/scripts.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/vapi/libgnomekbd/scripts.js b/vapi/libgnomekbd/scripts.js new file mode 100644 index 00000000..eb790936 --- /dev/null +++ b/vapi/libgnomekbd/scripts.js @@ -0,0 +1,46 @@ +/* markupwriter.vala + * + * Copyright (C) 2008-2009 Florian Brosch + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * + * Author: + * Florian Brosch <flo.brosch@gmail.com> + */ + +function get_path (path) { + var pos = path.lastIndexOf ('/'); + if (pos < 0) { + return ''; + } + + return path.substring (pos, -1) + '/'; +} + +function toggle_box (self, id) { + var element = document.getElementById (id); + if (element == null) { + return ; + } + + if (element.style.display == 'block') { + element.style.display = 'none'; + self.src = get_path (self.src) + 'coll_open.png'; + } else { + element.style.display = 'block'; + self.src = get_path (self.src) + 'coll_close.png'; + } +} + |