source: extensions/Subscribe_to_comments/template/form_comment.tpl @ 26139

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

update for 2.6

File size: 2.0 KB
Line 
1{if !$SUBSCRIBED}
2
3<p>
4  {'Notify me of followup comments'|translate} :<br>
5  <label><input type="radio" name="stc_mode" value="-1" {if !$STC_MODE}checked{/if}> {'No'|translate}</label>
6  {if $STC_ON_PICTURE}
7    {if $STC_ALLOW_GLOBAL}
8      <label><input type="radio" name="stc_mode" value="image" {if $STC_MODE=="image"}checked{/if}> {'this picture'|translate}</label>
9      {if $STC_ALLOW_ALBUM_IMAGES}<label><input type="radio" name="stc_mode" value="album-images" {if $STC_MODE=="album-images"}checked{/if}> {'all pictures of this album'|translate}</label>{/if}
10      <label><input type="radio" name="stc_mode" value="all-images" {if $STC_MODE=="all-images"}checked{/if}> {'all pictures of the gallery'|translate}</label>
11    {else}
12      <label><input type="radio" name="stc_mode" value="image" {if $STC_MODE=="image"}checked{/if}> {'Yes'|translate}</label>
13    {/if}
14  {elseif $STC_ON_ALBUM}
15    {if $STC_ALLOW_GLOBAL}
16      <label><input type="radio" name="stc_mode" value="album" {if $STC_MODE=="album"}checked{/if}> {'this album'|translate}</label>
17      <label><input type="radio" name="stc_mode" value="all-albums" {if $STC_MODE=="all-albums"}checked{/if}> {'all albums of the gallery'|translate}</label>
18    {else}
19      <label><input type="radio" name="stc_mode" value="album" {if $STC_MODE=="album"}checked{/if}> {'Yes'|translate}</label>
20    {/if}
21  {/if}
22</p>
23
24{if $STC_ASK_MAIL}
25{footer_script require='jquery'}
26(function($){
27        var $stc_email_input = $("#addComment input[name='email']");
28  var stc_bordercolor = $stc_email_input.css('border-color');
29
30  $("#addComment input[name='stc_mode']").change(function() {
31    if ($(this).val() != "-1") {
32      if ($stc_email_input.val()=="") {
33        $stc_email_input.css("border-color", "red");
34      }
35    }
36    else {
37      $stc_email_input.css("border-color", stc_bordercolor);
38    }
39  });
40  $stc_email_input.change(function() {
41    $(this).css('border-color', stc_bordercolor);
42  });
43}(jQuery));
44{/footer_script}
45{/if}
46
47{/if}
Note: See TracBrowser for help on using the repository browser.