Sha256: d88ed3f9ee72a7fa6273beea339a41ad84b82b9600662826b8098c0cbe4a224e
Contents?: true
Size: 876 Bytes
Versions: 8
Compression:
Stored size: 876 Bytes
Contents
(function (tree) { tree.URL = function (val, paths) { if (val.data) { this.attrs = val; } else { // Add the base path if the URL is relative and we are in the browser if (!/^(?:https?:\/|file:\/|data:\/)?\//.test(val.value) && paths.length > 0 && typeof(window) !== 'undefined') { val.value = paths[0] + (val.value.charAt(0) === '/' ? val.value.slice(1) : val.value); } this.value = val; this.paths = paths; } }; tree.URL.prototype = { toCSS: function () { return "url(" + (this.attrs ? 'data:' + this.attrs.mime + this.attrs.charset + this.attrs.base64 + this.attrs.data : this.value.toCSS()) + ")"; }, eval: function (ctx) { return this.attrs ? this : new(tree.URL)(this.value.eval(ctx), this.paths); } }; })(require('less/tree'));
Version data entries
8 entries across 8 versions & 1 rubygems