Changeset 3880:e6d1f6d9d7df for plugins/maintenance/js
- Timestamp:
- 09/18/18 20:22:10 (7 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/js/dc.maintenance.js
r3709 r3880 4 4 $(function() { 5 5 $('.step-box').each(function() { 6 varcode = $('input[name=code]', this).val();6 const code = $('input[name=code]', this).val(); 7 7 8 8 $('.step-submit', this).remove(); … … 17 17 18 18 function dcMaintenanceStep(box, code) { 19 varparams = {19 const params = { 20 20 f: 'dcMaintenanceStep', 21 21 xd_check: dotclear.nonce, … … 34 34 $('rsp>step', data).attr('title') 35 35 ); 36 varcode = $('rsp>step', data).attr('code');36 const code = $('rsp>step', data).attr('code'); 37 37 if (code > 0) { 38 38 dcMaintenanceStep(box, code);
Note: See TracChangeset
for help on using the changeset viewer.