summaryrefslogtreecommitdiff
path: root/bin/lib/less/tree/assignment.js
diff options
context:
space:
mode:
authorGabriel Hurley <gabriel@strikeawe.com>2012-10-04 15:43:40 -0700
committerGabriel Hurley <gabriel@strikeawe.com>2012-10-11 11:47:50 -0700
commitcb8e7c1f8f0b238b88253cd6d82092cbe530ba9e (patch)
tree9ee3463e05ae6cf2f9cee5309a648538471c02b9 /bin/lib/less/tree/assignment.js
parentef1e1d9b7a1fd4140518318ead8b7174a6a434ab (diff)
downloadtuskar-ui-cb8e7c1f8f0b238b88253cd6d82092cbe530ba9e.tar.gz
Splits OpenStack Dashboard bits from framework app code.
Moves everything OpenStack-specific (dashboards, apis, etc.) into the openstack_dashboard project, achieving a much cleaner separation between the project-specific code and the generic Horizon framework code. Change-Id: I7235b41d449b26c980668fc3eb4360b24508717b
Diffstat (limited to 'bin/lib/less/tree/assignment.js')
-rw-r--r--bin/lib/less/tree/assignment.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/bin/lib/less/tree/assignment.js b/bin/lib/less/tree/assignment.js
deleted file mode 100644
index 70ce6e2f..00000000
--- a/bin/lib/less/tree/assignment.js
+++ /dev/null
@@ -1,17 +0,0 @@
-(function (tree) {
-
-tree.Assignment = function (key, val) {
- this.key = key;
- this.value = val;
-};
-tree.Assignment.prototype = {
- toCSS: function () {
- return this.key + '=' + (this.value.toCSS ? this.value.toCSS() : this.value);
- },
- eval: function (env) {
- if (this.value.eval) { this.value = this.value.eval(env) }
- return this;
- }
-};
-
-})(require('../tree')); \ No newline at end of file