powercss
Version:
Unleash PowerCSS to create custom styling for every user of your web application. PowerCSS uses merging, caching, compression, and double-buffering to exceed the speed and flexibility of static CSS. https://www.youtube.com/watch?v=rnkMjzhxw4s
41 lines (37 loc) • 878 B
JavaScript
/*
* xhi-ws-context.js
* This file is used by WebStorm to resolve properties
* key received from external sources such as AJAX.
* It is also useful as a reference.
* It should *NOT* be included in production code.
*
* @author Michael S. Mikowski - mike.mikowski@gmail.com
*/
/*jslint browser : true, continue : true,
devel : true, indent : 2, maxerr : 50,
newcap : true, nomen : true, plusplus : true,
regexp : true, sloppy : true, vars : false,
white : true, todo : true, unparam : true
*/
(function () {
'use strict';
var
bool = true,
list = [],
map = {},
fn = Function,
int = 1,
num = 0.5,
obj = {},
str = ''
;
return {
// DOM
ownerNode : obj,
// parameters
_attr_key_ : str,
_attr_val_ : str,
_css_key_map_ : map,
_css_val_map_ : map
};
}());