Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

33 строки
899 B

  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. define([], function () {
  6. 'use strict';
  7. return {
  8. loginUrl: 'https://ims-na1.adobelogin.com/ims/authorize',
  9. profileUrl: 'adobe_ims/user/profile',
  10. logoutUrl: 'adobe_ims/user/logout',
  11. manageAccountLink: 'https://account.adobe.com/',
  12. login: {
  13. callbackParsingParams: {
  14. regexpPattern: /auth\[code=(success|error);message=(.+)\]/,
  15. codeIndex: 1,
  16. messageIndex: 2,
  17. nameIndex: 3,
  18. successCode: 'success',
  19. errorCode: 'error'
  20. },
  21. popupWindowParams: {
  22. width: 500,
  23. height: 600,
  24. top: 100,
  25. left: 300
  26. },
  27. popupWindowTimeout: 10000
  28. }
  29. };
  30. });