getCoordinate(e) {
this.x = e.clientX;
}
This file contains 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
// https://github.com/klughammer/node-randomstring | |
var string = randomstring.generate({ | |
length: 10, | |
capitalization: 'lowercase' | |
}); |
This file contains 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
' so me_shit_&$^%*5-_5.55'.replace(/[^0-9.]/g, '') | |
// >> 55.55 |
This file contains 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
// e.currentTarget must be <form></form> tag | |
// onclick submit >> | |
var data = $(e.currentTarget).serializeJSON({parseAll: true}); | |
console.log(data); |
This file contains 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
<!-- something like this --> | |
<img v-if="someObject.someArray[0].image" :src="someObject.someArray[0].image"/> | |
<!-- or this --> | |
<img v-if="item.content[0]" v-bind:src="item.content[0].cardurl"> |
This file contains 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
<div class="select2-wrapper"> | |
<select required> | |
... | |
</select> | |
</div> | |
<style> | |
.select2-offscreen, | |
.select2-offscreen:focus { | |
clip: rect(0 0 0 0) !important; |
This file contains 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
!!"" // false | |
!!0 // false | |
!!null // false | |
!!undefined // false | |
!!NaN // false | |
!!"hello" // true | |
!!1 // true | |
!!{} // true | |
!![] // true |
This file contains 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 list = [ | |
{DateFrom: '08/11/2016 10:00:00 PM'}, | |
{DateFrom: '11/11/2014 10:00:00 PM'}, | |
{DateFrom: '30/11/2016 10:00:00 PM'}, | |
{DateFrom: '05/01/2015 10:00:00 PM'} | |
]; | |
var sorted = _.sortBy(list, function(item){ | |
return - moment(item.DateFrom, 'DD/MM/YYYY mm:hh:ss A').unix(); // parse date with moment >> format to UNIX timestamp | |
}); |