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
//Someone tried to combine first and third rotator using css classes | |
// Because now featured rotator is now between first and third rotator looks broken. | |
// this is happening only on mobile | |
//first rotator | |
<div class="playlist-node"> | |
<div class="title">Title</div> | |
<div class="rotator" style="display: none!important"></div> | |
</div> |
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
.lazy-image { | |
width: auto; | |
height: auto; | |
position: relative; | |
} | |
@-webkit-keyframes loaded { | |
0% { | |
opacity: 0; | |
} |
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
/* USE CASE WHEN WE HAVE 2 ADS IN ONE PAGE */ | |
<div class="ad1"> | |
<form data-dw="300" data-dh="90" data-dslid="300x60_1" data-tw="300" data-th="60" data-tslid="300x60_1" | |
data-mw="300" data-mh="60" data-nslid="300x600_1"></form> | |
</div> | |
<div class="ad2"> | |
<form data-dw="790" data-dh="90" data-dslid="790x90_1" data-tw="790" data-th="90" data-tslid="790x90_1" | |
data-mw="300" data-mh="60" data-nslid="300x60_2"></form> //important see 300x60_2 (_2 is ad position and is another the for other breakpoints) | |
</div> |
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
var freeWheel = { | |
/** | |
* Configure correct ad width and height | |
* @returns {undefined} | |
*/ | |
setAdWidthHeight: function () { | |
var adWidth, | |
adHeight, |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.first, .second { | |
.hello { | |
content: 'yo'; | |
} | |
} |
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
console.log(0.1 + 0.2); | |
console.log(0.1 + 0.2 == 0.3); |
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
query = {}; | |
options = {}; | |
options.filter = { | |
{fieldName}: {Value} | |
} |
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 axios from 'axios' | |
const baseURL = 'http://master.datasource.jazzy-hr.jzapp.io/api/v1/'; | |
const api = axios.create({ | |
baseURL, | |
timeout: 1500, | |
}) | |
export const getGnomes = (params = {}) => api.get('/gnomes', { |