Revert "Export"
[platform/framework/web/web-ui-fw.git] / build-tools / lib / less / tree / url.js
1 (function (tree) {
2
3 tree.URL = function (val, paths) {
4     if (val.data) {
5         this.attrs = val;
6     } else {
7         // Add the base path if the URL is relative and we are in the browser
8         if (!/^(?:https?:\/|file:\/|data:\/)?\//.test(val.value) && paths.length > 0 && typeof(window) !== 'undefined') {
9             val.value = paths[0] + (val.value.charAt(0) === '/' ? val.value.slice(1) : val.value);
10         }
11         this.value = val;
12         this.paths = paths;
13     }
14 };
15 tree.URL.prototype = {
16     toCSS: function () {
17         return "url(" + (this.attrs ? 'data:' + this.attrs.mime + this.attrs.charset + this.attrs.base64 + this.attrs.data
18                                     : this.value.toCSS()) + ")";
19     },
20     eval: function (ctx) {
21         return this.attrs ? this : new(tree.URL)(this.value.eval(ctx), this.paths);
22     }
23 };
24
25 })(require('less/tree'));