source: frontend/node_modules/cssom/lib/StyleSheet.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 272 bytes
Line 
1//.CommonJS
2var CSSOM = {};
3///CommonJS
4
5
6/**
7 * @constructor
8 * @see http://dev.w3.org/csswg/cssom/#the-stylesheet-interface
9 */
10CSSOM.StyleSheet = function StyleSheet() {
11 this.parentStyleSheet = null;
12};
13
14
15//.CommonJS
16exports.StyleSheet = CSSOM.StyleSheet;
17///CommonJS
Note: See TracBrowser for help on using the repository browser.