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:
583 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | exports.visibility = void 0;
|
---|
4 | exports.visibility = {
|
---|
5 | name: 'visible',
|
---|
6 | initialValue: 'none',
|
---|
7 | prefix: false,
|
---|
8 | type: 2 /* IDENT_VALUE */,
|
---|
9 | parse: function (_context, visibility) {
|
---|
10 | switch (visibility) {
|
---|
11 | case 'hidden':
|
---|
12 | return 1 /* HIDDEN */;
|
---|
13 | case 'collapse':
|
---|
14 | return 2 /* COLLAPSE */;
|
---|
15 | case 'visible':
|
---|
16 | default:
|
---|
17 | return 0 /* VISIBLE */;
|
---|
18 | }
|
---|
19 | }
|
---|
20 | };
|
---|
21 | //# sourceMappingURL=visibility.js.map |
---|
Note:
See
TracBrowser
for help on using the repository browser.