mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
6a778e8c17
close #155, see reasons there This is a huge commit, so let me know if it will cause any trouble, I might consider reverting it if it's the case.
14 lines
341 B
JavaScript
14 lines
341 B
JavaScript
// twitter bootstrap stuff;
|
|
// not in static 'cause I want it to be bundled with the rest of javascripts
|
|
require('./bootstrap-modal')
|
|
|
|
// our own files
|
|
require('./search')
|
|
require('./entry')
|
|
|
|
var $ = require('unopinionate').selector
|
|
$(document).on('click', '.js-userLogoutBtn', function() {
|
|
$('#userLogoutForm').submit()
|
|
return false
|
|
})
|