source: extensions/plugin_lang_analysis/template/config.tpl @ 28876

Last change on this file since 28876 was 28876, checked in by mistic100, 10 years ago

improve display of files list

File size: 1.4 KB
Line 
1{footer_script}
2$('.switch-button.type span').click(function() {
3  $(this).siblings('span').removeClass('active');
4  $(this).addClass('active');
5 
6  if ($(this).hasClass('common')) {
7    $(this).nextAll('input').val('false');
8  }
9  else {
10    $(this).nextAll('input').val('true');
11  }
12});
13
14$('.switch-button.other span').click(function() {
15  if ($(this).hasClass('active')) {
16    $(this).removeClass('active');
17    $(this).next('input').val('false');
18  }
19  else {
20    $(this).addClass('active');
21    $(this).next('input').val('true');
22  }
23});
24
25$('.switch-button.ignore span').click(function() {
26  if ($(this).hasClass('active')) {
27    $(this).removeClass('active');
28    $(this).next('input').val('false');
29  }
30  else {
31    $(this).addClass('active');
32    $(this).next('input').val('true');
33  }
34});
35
36$('.folder > td > .switch-button span').click(function() {
37  $(this).removeClass('active')
38    .closest('.folder').next('.nested')
39    .find('tr:not(.folder) > td > .switch-button span[data-val="'+ $(this).data('val') +'"]')
40    .trigger('click');
41});
42{/footer_script}
43
44<form method="POST" action="{$F_ACTION}" class="properties">
45<fieldset>
46  <legend>{'Select dependencies'|translate}</legend>
47 
48  {include file=$PLA_ABS_PATH|cat:'template/config_list.inc.tpl' files=$PLA_FILES level=0 path=""}
49 
50  <p class="formButtons"><input type="submit" value="{'Continue'|translate}"></p>
51</fieldset>
52</form>
Note: See TracBrowser for help on using the repository browser.