This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getUrlParameter(name) { | |
| name = name.replace(/[\[]/, '\\[').replace(/[\]]/, '\\]'); | |
| var regex = new RegExp('[\\?&]' + name + '=([^&#]*)'); | |
| var results = regex.exec(location.search); | |
| return results === null ? '' : decodeURIComponent(results[1].replace(/\+/g, ' ')); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function getClickfunnelsData() { | |
| var clickfunnelsData = {}; | |
| var dataPoint = null; | |
| var allKeys = Object.keys(localStorage); | |
| var clickfunnelsKeys = allKeys.filter(function(key) { | |
| // Return only keys that match the format garlic:hostname*>input.data | |
| return key.match(/garlic:.+\*>input\.(.+)/) !== null; | |
| }); | |
| clickfunnelsKeys.forEach(function(key) { | |
| dataPoint = key.match(/garlic:.+\*>input\.(.+)/)[1]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import url('CUSTOM FONT URL FROM GOOGLE FONTS OR FROM CDN FONTS'); | |
| /* Font weights */ | |
| [data-title~='fw-light'] .elHeadline { font-weight: 300; } | |
| [data-title~='fw-regular'] .elHeadline { font-weight: 400; } | |
| [data-title~='fw-medium'] .elHeadline { font-weight: 500; } | |
| [data-title~='fw-semibold'] .elHeadline { font-weight: 600; } | |
| [data-title~='fw-bold'] .elHeadline { font-weight: 700; } | |
| [data-title~='fw-extrabold'] .elHeadline { font-weight: 800; } | |
| [data-title~='fw-black'] .elHeadline { font-weight: 900; } |
OlderNewer