source: imaps-frontend/node_modules/html2canvas/dist/lib/css/property-descriptors/direction.js

main
Last change on this file was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 5 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 495 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.direction = void 0;
4exports.direction = {
5 name: 'direction',
6 initialValue: 'ltr',
7 prefix: false,
8 type: 2 /* IDENT_VALUE */,
9 parse: function (_context, direction) {
10 switch (direction) {
11 case 'rtl':
12 return 1 /* RTL */;
13 case 'ltr':
14 default:
15 return 0 /* LTR */;
16 }
17 }
18};
19//# sourceMappingURL=direction.js.map
Note: See TracBrowser for help on using the repository browser.