Guest User

Untitled

a guest
Apr 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. isVisible: ko.observable(false),
  2. errorValidationMessage: ko.observable(false),
  3. stepCode: 'shipping-method',
  4. stepTitle: 'Shipping Method',
  5.  
  6.  
  7. initialize: function () {
  8. this._super();
  9.  
  10. stepNavigator.registerStep(
  11. this.stepCode,
  12.  
  13. null,
  14. this.stepTitle,
  15.  
  16. this.isVisible,
  17.  
  18. _.bind(this.navigate, this),
  19.  
  20. 15
  21. );
  22.  
  23. return this;
  24. },
  25.  
  26.  
  27. navigate: function () {
  28.  
  29. },
  30.  
  31.  
  32. navigateToNextStep: function () {
  33. stepNavigator.next();
  34. },
Add Comment
Please, Sign In to add comment