Skip to content

Commit

Permalink
Merge pull request #10 from abridger/master
Browse files Browse the repository at this point in the history
Fix dependency link & correct tracking events
  • Loading branch information
vikdoro authored Jan 16, 2017
2 parents 8fd4c5d + 7e63319 commit 2accd64
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kano-auth/kano-auth.html
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ <h2>Thanks!</h2>
this.$.pager.selected = viewName;

let cap = viewName.charAt(0).toUpperCase() + viewName.slice(1);
// this.dispatchTrackingEvent("authModal" + cap + "ViewLoaded");
this.fire('track-event', 'authModal' + cap + 'ViewLoaded');
},
open (defaultPage) {
defaultPage = defaultPage || 'login';
Expand All @@ -330,7 +330,7 @@ <h2>Thanks!</h2>
this.$.dialog.close();
},
_skip () {
this.dispatchTrackingEvent('authModalGrownupsViewSkipClicked');
this.fire('track-event', 'authModalGrownupsViewSkipClicked');
this._cancel();
},
reset () {
Expand Down
2 changes: 1 addition & 1 deletion kano-drop-down-item/kano-drop-down-item.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<link rel="import" href="../iron-flex-layout/iron-flex-layout.html">
<link rel="import" href="../../iron-flex-layout/iron-flex-layout.html">

<!--
`kano-drop-down-item` is designed to be used as an item in a list inside `kano-drop-down` you can add any content to it and an icon
Expand Down

0 comments on commit 2accd64

Please sign in to comment.