File size: 171 Bytes
bc20498 |
1 2 3 4 5 6 7 8 |
function lower() {
if (this.previousSibling) this.parentNode.insertBefore(this, this.parentNode.firstChild);
}
export default function() {
return this.each(lower);
}
|
bc20498 |
1 2 3 4 5 6 7 8 |
function lower() {
if (this.previousSibling) this.parentNode.insertBefore(this, this.parentNode.firstChild);
}
export default function() {
return this.each(lower);
}
|