Skip to content

Commit

Permalink
Merge pull request #90 from HubSpot/clickthrough-arrow
Browse files Browse the repository at this point in the history
Add option to change arrow pointer event
  • Loading branch information
geekjuice committed Jun 7, 2015
2 parents d1588bf + 9f20939 commit 4d68702
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.0.1
- Update arrow mixin to change arrow pointer event


## v1.0.0
- Coffeescript -> ES6
- Proper UMD Wrapper
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether",
"version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.hubspot.com/tether",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "tether",
"repo": "HubSpot/tether",
"version": "1.0.0",
"version": "1.0.1",
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down
2 changes: 1 addition & 1 deletion dist/js/tether.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! tether 1.0.0 */
/*! tether 1.0.1 */

(function(root, factory) {
if (typeof define === 'function' && define.amd) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tether",
"version": "1.0.0",
"version": "1.0.1",
"description": "A client-side library to make absolutely positioned elements attach to elements in the page efficiently.",
"authors": [
"Zack Bloom <zackbloom@gmail.com>",
Expand Down
3 changes: 2 additions & 1 deletion src/css/helpers/_tether-theme-arrows.sass
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=tether-theme-arrows($themePrefix: "tether", $themeName: "arrows", $arrowSize: 16px, $backgroundColor: #fff, $color: inherit, $useDropShadow: false)
=tether-theme-arrows($themePrefix: "tether", $themeName: "arrows", $arrowSize: 16px, $arrowPointerEvents: null, $backgroundColor: #fff, $color: inherit, $useDropShadow: false)
.#{ $themePrefix }-element.#{ $themePrefix }-theme-#{ $themeName }
max-width: 100%
max-height: 100%
Expand Down Expand Up @@ -26,6 +26,7 @@
border-color: transparent
border-width: $arrowSize
border-style: solid
pointer-events: $arrowPointerEvents

// Centers and middles
Expand Down

0 comments on commit 4d68702

Please sign in to comment.