Welcome to mirror list, hosted at ThFree Co, Russian Federation.

less.js « js « assets - github.com/4ever9/less.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 44c0408789e8d56ae3277cb7c19355fb576b8097 (plain)
1
2
3
4
5
6
console.log(99)

$(document).on('click', '#btn-dark', function(e) {
    e.preventDefault()
    $('body').toggleClass('dark')
})