markAttachment.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* globals Tether */
  2. 'use strict';
  3. Tether.modules.push({
  4. initialize: function initialize() {
  5. var _this = this;
  6. this.markers = {};
  7. ['target', 'element'].forEach(function (type) {
  8. var el = document.createElement('div');
  9. el.className = _this.getClass('' + type + '-marker');
  10. var dot = document.createElement('div');
  11. dot.className = _this.getClass('marker-dot');
  12. el.appendChild(dot);
  13. _this[type].appendChild(el);
  14. _this.markers[type] = { dot: dot, el: el };
  15. });
  16. },
  17. position: function position(_ref) {
  18. var manualOffset = _ref.manualOffset;
  19. var manualTargetOffset = _ref.manualTargetOffset;
  20. var offsets = {
  21. element: manualOffset,
  22. target: manualTargetOffset
  23. };
  24. for (var type in offsets) {
  25. var offset = offsets[type];
  26. for (var side in offset) {
  27. var val = offset[side];
  28. var notString = typeof val !== 'string';
  29. if (notString || val.indexOf('%') === -1 && val.indexOf('px') === -1) {
  30. val += 'px';
  31. }
  32. if (this.markers[type].dot.style[side] !== val) {
  33. this.markers[type].dot.style[side] = val;
  34. }
  35. }
  36. }
  37. return true;
  38. }
  39. });