@ovh-ux/ng-ovh-order-tracking

OVH order tracking

Usage no npm install needed!

<script type="module">
  import ovhUxNgOvhOrderTracking from 'https://cdn.skypack.dev/@ovh-ux/ng-ovh-order-tracking';
</script>

README

ng-ovh-order-tracking

OVHcloud order tracking.

npm version Downloads Dependencies Dev Dependencies

Install

yarn add @ovh-ux/ng-ovh-order-tracking

Usage

import angular from 'angular';
import ngOvhOrderTracking from '@ovh-ux/ng-ovh-order-tracking';
import uiRouter from '@uirouter/angularjs';

angular.module('myApp', [ngOvhOrderTracking, uiRouter]).config(
  /* @ngInject */ ($stateProvider) => {
    $stateProvider.state('order-tracking', {
      url: '/order-tracking/{orderId}',
      component: 'ovhOrderTrackingComponent',
      resolve: {
        orderId: /* @ngInject */ ($transition$) =>
          $transition$.params().orderId,
      },
    });
  },
);

Contributing

Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.

License

BSD-3-Clause © OVH SAS