Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. define(['jquery',], function ($) {
  2. 'use strict';
  3.  
  4. $.widget("custom.loader", $.mage.loader, {
  5. options: {
  6. icon: '',
  7. texts: {
  8. loaderText: $.mage.__('Please wait...'),
  9. imgAlt: $.mage.__('Loading...')
  10. },
  11. template:
  12. '<div class="loading-mask-custom" data-role="loader">' +
  13. '<div class="loader">' +
  14. '<img alt="<%- data.texts.imgAlt %>" src="new path">' +
  15. '<p><%- data.texts.loaderText %></p>' +
  16. '</div>' +
  17. '</div>'
  18. }
  19. });
  20.  
  21. return $.custom.loader; });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement