mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-14 09:28:02 -05: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();
|
|
});
|