This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 2009/03/04 ver. | |
var hashTibExWylie = { | |
"": "", | |
"k": "ཀ", "kh": "ཁ", "g": "ག", "gh": "གྷ", "ng": "ང", | |
"c": "ཅ", "ch": "ཆ", "j": "ཇ", "jh": "", "ny": "ཉ", | |
"T": "ཏཊ", "TH": "ཐཋ", "D": "དཌ", "DH": "དྷཌྷ", "N": "ནཎ", | |
"t": "ཏ", "th": "ཐ", "d": "ད", "dh": "དྷ", "n": "ན", | |
"p": "པ", "ph": "ཕ", "b": "བ", "bh": "བྷ", "m": "མ", | |
"ts": "ཙ", "tsh": "ཚ", "dz": "ཛ", "dzh": "ཛྷ", "w": "ཝ", | |
"zh": "ཞ", "z": "ཟ", "'": "འ", "y": "ཡ", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Adds a Check All Option to a group of Checkboxes in Drupal jQuery Plugin | |
* | |
* To make this work you need pass to this function, a div that is a decendent | |
of a form and an ancestor of multiple checkboxes. It is specifically tuned to | |
drupal, but can be used for any html by setting the options. Here's and | |
example, where .form-item-list is fapi element of type checkboxes. | |
* | |
* @code | |
* $('#my-form .form-item-list').drupalCheckAll(); |