Lines Matching refs:jtab
34 var jtab = { variable
352 for (var key in jtab.Chords) {
397 this.scale = jtab.WesternScale;
399 this.baseChords = jtab.Chords;
889 jtab.characterize = function (notation) {
927 jtab.getStyle = function (element, style) {
941 jtab.setPalette = function (element) {
942 var fgColor = jtab.getStyle(jQuery(element), 'color');
949 bgColor = jtab.getStyle(jQuery(element), 'background-color');
960 jtab.render = function (element, notation_text) {
964 var tabtype = jtab.characterize(notation);
967 var rndID = "builder_" + jtab.element_count++;
973 jtab.setPalette(element);
986 jtab.renderimplicit = function (within_scope) {
987 …jQuery('.jtab', within_scope).not('.rendered').each(function (name, index) { jtab.render(this); });