@ovh-ux/ng-ovh-order-tracking
v1.1.1
Published
OVH order tracking
Downloads
41
Readme
ng-ovh-order-tracking
OVHcloud order tracking.
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