mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
(function() {
|
|
var $ = jQuery;
|
|
|
|
var exports = window.Shiny = window.Shiny || {};
|
|
|
|
|
|
$(document).on('submit', 'form:not([action])', function(e) {
|
|
e.preventDefault();
|
|
});
|