X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=blobdiff_plain;f=afb-client%2Fbower_components%2Ftether%2Fjs%2FmarkAttachment.js;fp=afb-client%2Fbower_components%2Ftether%2Fjs%2FmarkAttachment.js;h=a6d8f80b51aeb07eb8c68329dfe85e4e777a69ed;hp=0000000000000000000000000000000000000000;hb=5b1e6cc132f44262a873fa8296a2a3e1017b0278;hpb=f7d2f9ac4168ee5064580c666d508667a73cefc0 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);