Changeset 3417380
- Timestamp:
- 12/11/2025 12:59:08 PM (4 months ago)
- File:
-
- 1 edited
-
beatbrain-joomla-migration/trunk/js/admin.js (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beatbrain-joomla-migration/trunk/js/admin.js
r3417241 r3417380 1 1 jQuery(document).ready(function($) { 2 3 // Last connection is successful, if the connection is successful, the button will be enabled, otherwise, it will be disabled. 2 4 // Check connection status from localStorage 3 5 var connectionStatus = localStorage.getItem('j2w_connection_status'); … … 162 164 }) 163 165 .always(function() { 164 button.prop('disabled', false).text('Prepare User Data CSV');166 button.prop('disabled', false).text('Prepare Users'); 165 167 }); 166 168 }); … … 242 244 }) 243 245 .always(function() { 244 btn.prop('disabled', false).text('Prepare Article Data');246 btn.prop('disabled', false).text('Prepare Articles'); 245 247 }); 246 248 }); … … 331 333 }) 332 334 .always(function() { 333 button.prop('disabled', false).text('Prepare Product Data CSV');335 button.prop('disabled', false).text('Prepare Virtuemart Products'); 334 336 }); 335 337 }); … … 422 424 }) 423 425 .always(function() { 424 button.prop('disabled', false).text(' Prepare HikaShop Product Data CSV');426 button.prop('disabled', false).text(' Prepare HikaShop Products'); 425 427 }); 426 428 }); … … 513 515 }) 514 516 .always(function() { 515 button.prop('disabled', false).text('Prepare HikaShop Review Data CSV');517 button.prop('disabled', false).text('Prepare HikaShop Reviews'); 516 518 }); 517 519 }); … … 550 552 }) 551 553 .always(function() { 552 button.prop('disabled', false).text('Prepare VirtueMart Review Data CSV');554 button.prop('disabled', false).text('Prepare VirtueMart Reviews'); 553 555 }); 554 556 }); … … 684 686 }) 685 687 .always(function() { 686 button.prop('disabled', false).text('Prepare HikaShop Order Data CSV');688 button.prop('disabled', false).text('Prepare HikaShop Orders'); 687 689 }); 688 690 }); … … 720 722 }) 721 723 .always(function() { 722 button.prop('disabled', false).text('Prepare VirtueMart Order Data CSV');724 button.prop('disabled', false).text('Prepare VirtueMart Orders'); 723 725 }); 724 726 });
Note: See TracChangeset
for help on using the changeset viewer.