X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=src%2Fapp-framework-demo.git;a=blobdiff_plain;f=afb-client%2Fbower_components%2Ftether%2Fcoffee%2FmarkAttachment.coffee;fp=afb-client%2Fbower_components%2Ftether%2Fcoffee%2FmarkAttachment.coffee;h=b29c9efa3c2d33c63e67873e9359e686ad980ab1;hp=0000000000000000000000000000000000000000;hb=5b1e6cc132f44262a873fa8296a2a3e1017b0278;hpb=f7d2f9ac4168ee5064580c666d508667a73cefc0 diff --git a/afb-client/bower_components/tether/coffee/markAttachment.coffee b/afb-client/bower_components/tether/coffee/markAttachment.coffee new file mode 100644 index 0000000..b29c9ef --- /dev/null +++ b/afb-client/bower_components/tether/coffee/markAttachment.coffee @@ -0,0 +1,30 @@ +@Tether.modules.push + initialize: -> + @markers = {} + + for type in ['target', 'element'] + el = document.createElement 'div' + el.className = @getClass("#{ type }-marker") + + dot = document.createElement 'div' + dot.className = @getClass('marker-dot') + el.appendChild dot + + @[type].appendChild el + + @markers[type] = {dot, el} + + position: ({manualOffset, manualTargetOffset}) -> + offsets = + element: manualOffset + target: manualTargetOffset + + for type, offset of offsets + for side, val of offset + if typeof val isnt 'string' or (val.indexOf('%') is -1 and val.indexOf('px') is -1) + val += 'px' + + if @markers[type].dot.style[side] isnt val + @markers[type].dot.style[side] = val + + true