mirror of
https://github.com/less/less.js.git
synced 2026-02-04 20:15:06 -05:00
37 lines
1.0 KiB
JavaScript
37 lines
1.0 KiB
JavaScript
(function (tree) {
|
|
|
|
tree.URL = function (val, currentFileInfo) {
|
|
this.value = val;
|
|
this.currentFileInfo = currentFileInfo;
|
|
};
|
|
tree.URL.prototype = {
|
|
type: "Url",
|
|
accept: function (visitor) {
|
|
this.value = visitor.visit(this.value);
|
|
},
|
|
genCSS: function (env, output) {
|
|
output.add("url(");
|
|
this.value.genCSS(env, output);
|
|
output.add(")");
|
|
},
|
|
toCSS: tree.toCSS,
|
|
eval: function (ctx) {
|
|
var val = this.value.eval(ctx), rootpath;
|
|
|
|
// Add the base path if the URL is relative
|
|
rootpath = this.currentFileInfo && this.currentFileInfo.rootpath;
|
|
if (rootpath && typeof val.value === "string" && ctx.isPathRelative(val.value)) {
|
|
if (!val.quote) {
|
|
rootpath = rootpath.replace(/[\(\)'"\s]/g, function(match) { return "\\"+match; });
|
|
}
|
|
val.value = rootpath + val.value;
|
|
}
|
|
|
|
val.value = ctx.normalizePath(val.value);
|
|
|
|
return new(tree.URL)(val, null);
|
|
}
|
|
};
|
|
|
|
})(require('../tree'));
|