diff options
author | Fulup Ar Foll <fulup@iot.bzh> | 2016-02-09 18:40:49 +0100 |
---|---|---|
committer | Fulup Ar Foll <fulup@iot.bzh> | 2016-02-09 18:40:49 +0100 |
commit | 3d2fda7dd39e2363682f1fa353c951ab0d44ddfa (patch) | |
tree | af968a8ac5d4fde1f3cebcec5fb0973eb2bfb2cb /afb-client/bower_components/tether/js/markAttachment.js | |
parent | 12a3520ba440316c76b95d92a684666f03f7b47d (diff) |
Implemented URL query parsing for initial token /opa/?token=abcde
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); |