Skip to content

Commit 4d68702

Browse files
committed
Merge pull request #90 from HubSpot/clickthrough-arrow
Add option to change arrow pointer event
2 parents d1588bf + 9f20939 commit 4d68702

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.0.1
2+
- Update arrow mixin to change arrow pointer event
3+
4+
15
## v1.0.0
26
- Coffeescript -> ES6
37
- Proper UMD Wrapper

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tether",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"homepage": "https://github.hubspot.com/tether",
55
"authors": [
66
"Zack Bloom <[email protected]>",

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tether",
33
"repo": "HubSpot/tether",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
66
"authors": [
77
"Zack Bloom <[email protected]>",

dist/js/tether.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! tether 1.0.0 */
1+
/*! tether 1.0.1 */
22

33
(function(root, factory) {
44
if (typeof define === 'function' && define.amd) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tether",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
55
"authors": [
66
"Zack Bloom <[email protected]>",

src/css/helpers/_tether-theme-arrows.sass

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
=tether-theme-arrows($themePrefix: "tether", $themeName: "arrows", $arrowSize: 16px, $backgroundColor: #fff, $color: inherit, $useDropShadow: false)
1+
=tether-theme-arrows($themePrefix: "tether", $themeName: "arrows", $arrowSize: 16px, $arrowPointerEvents: null, $backgroundColor: #fff, $color: inherit, $useDropShadow: false)
22
.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
33
max-width: 100%
44
max-height: 100%
@@ -26,6 +26,7 @@
2626
border-color: transparent
2727
border-width: $arrowSize
2828
border-style: solid
29+
pointer-events: $arrowPointerEvents
2930

3031
// Centers and middles
3132

0 commit comments

Comments
 (0)