source: extensions/ContactForm/themes/cf_button.tpl @ 10035

Last change on this file since 10035 was 10035, checked in by plg, 13 years ago

compatibility with Piwigo 2.2 (remove "adviser", get_comment_post_key()
replaced by get_ephemeral_key(), known_script replaced by combine_script
and use of combine_css)

textarea is no more "resizable" (useless and break CSS rules)

File size: 357 bytes
Line 
1<div class="cf-button">
2<input type="button" value="{'cf_hide'|@translate}" onclick="hide('cf_messages');">
3</div>
4
5{footer_script require="jquery"}{literal}
6function hide(id) {
7  var element = document.getElementById(id);
8  if (null != element) {
9    element.style.visibility = 'hidden';
10    element.style.display = 'none';
11  }
12}
13{/literal}{/footer_script}
Note: See TracBrowser for help on using the repository browser.