Skip to content

Instantly share code, notes, and snippets.

View loeffel-io's full-sized avatar
🐢
Trying to find the most simple and beautiful way

Lucas Löffel loeffel-io

🐢
Trying to find the most simple and beautiful way
View GitHub Profile
@loeffel-io
loeffel-io / theme.xml
Created April 3, 2018 12:49
Laracasts theme updated
<scheme name="laracasts-theme-updated" version="142" parent_scheme="Default">
<option name="FONT_SCALE" value="1.0" />
<metaInfo>
<property name="created">2018-04-03T14:48:34</property>
<property name="ide">PhpStorm</property>
<property name="ideVersion">2018.1.0.0</property>
<property name="modified">2018-04-03T14:48:41</property>
<property name="originalScheme">laracasts-theme-updated</property>
</metaInfo>
<option name="LINE_SPACING" value="1.7" />
@loeffel-io
loeffel-io / scrolledToEnd.js
Last active January 27, 2018 17:08
scrolledToEnd
scrolledToEnd(element) {
if (!element) return false
return (element.scrollHeight - element.clientHeight) === element.scrollTop
},