mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
13 lines
291 B
JavaScript
13 lines
291 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')
|
|
|
|
$(document).on('click', 'a.submit', function() {
|
|
$(this).parent('form').submit()
|
|
return false
|
|
})
|