Changeset 115244 in spip-zone
- Timestamp:
- May 4, 2019, 2:56:16 PM (2 years ago)
- Location:
- _plugins_/empecher_double_clic/trunk
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/empecher_double_clic/trunk/empecher_double_clic_pipelines.php
r115079 r115244 13 13 if (!test_espace_prive()) { 14 14 $flux['data'] .= "<script type='text/javascript' src='".find_in_path('js/empecher_double_clic.js')."'></script>"; 15 $flux['data'] .= "<link rel='stylesheet' type='text/css' media='all' href='".find_in_path('css/empecher_double_clic.css')."' />"; 15 16 } 16 17 return $flux; -
_plugins_/empecher_double_clic/trunk/js/empecher_double_clic.js
r115076 r115244 1 1 $(function() { 2 2 $('form').submit(function(event) { 3 $(this). find('input[type="submit"], button[type="submit"]').addClass('js-sending').attr('disabled', 'disabled');3 $(this).addClass('js-sending').find('input[type="submit"], button[type="submit"]').attr('disabled', 'disabled'); 4 4 }); 5 5 }); -
_plugins_/empecher_double_clic/trunk/paquet.xml
r115079 r115244 2 2 prefix="empecher_double_clic" 3 3 categorie="communication" 4 version="0. 1.1"4 version="0.2.0" 5 5 etat="test" 6 6 compatibilite="[3.2.0;3.2.*]" … … 14 14 <credit lien="https://thenounproject.com/coquet_adrien/">Logo Double click par Adrien Coquet / the Noun Project</credit> 15 15 <licence lien="http://www.gnu.org/licenses/gpl-3.0.html">GPL 3</licence> 16 16 17 17 <pipeline nom="formulaire_fond" inclure="empecher_double_clic_pipelines.php" /> 18 18
Note: See TracChangeset
for help on using the changeset viewer.