diff options
author | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-05-31 18:16:48 +0200 |
---|---|---|
committer | Stephane Desneux <stephane.desneux@iot.bzh> | 2016-05-31 18:16:48 +0200 |
commit | 5b1e6cc132f44262a873fa8296a2a3e1017b0278 (patch) | |
tree | 43b2cd54e2e300b399ff3f2af4458a2c4ed8a144 /afb-client/bower_components/tether/js/markAttachment.js | |
parent | f7d2f9ac4168ee5064580c666d508667a73cefc0 (diff) | |
parent | 85ace9c1ce9a98e9b8a22f045c7dd752b38d9129 (diff) |
Merge afb-client
Diffstat (limited to 'afb-client/bower_components/tether/js/markAttachment.js')
-rw-r--r-- | afb-client/bower_components/tether/js/markAttachment.js | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/afb-client/bower_components/tether/js/markAttachment.js b/afb-client/bower_components/tether/js/markAttachment.js new file mode 100644 index 0000000..a6d8f80 --- /dev/null +++ b/afb-client/bower_components/tether/js/markAttachment.js @@ -0,0 +1,46 @@ +(function() { + this.Tether.modules.push({ + initialize: function() { + var dot, el, type, _i, _len, _ref, _results; + this.markers = {}; + _ref = ['target', 'element']; + _results = []; + for (_i = 0, _len = _ref.length; _i < _len; _i++) { + type = _ref[_i]; + el = document.createElement('div'); + el.className = this.getClass("" + type + "-marker"); + dot = document.createElement('div'); + dot.className = this.getClass('marker-dot'); + el.appendChild(dot); + this[type].appendChild(el); + _results.push(this.markers[type] = { + dot: dot, + el: el + }); + } + return _results; + }, + position: function(_arg) { + var manualOffset, manualTargetOffset, offset, offsets, side, type, val; + manualOffset = _arg.manualOffset, manualTargetOffset = _arg.manualTargetOffset; + offsets = { + element: manualOffset, + target: manualTargetOffset + }; + for (type in offsets) { + offset = offsets[type]; + for (side in offset) { + val = offset[side]; + if (typeof val !== 'string' || (val.indexOf('%') === -1 && val.indexOf('px') === -1)) { + val += 'px'; + } + if (this.markers[type].dot.style[side] !== val) { + this.markers[type].dot.style[side] = val; + } + } + } + return true; + } + }); + +}).call(this); |