mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-05 04:05:06 -05:00
20 lines
294 B
JavaScript
20 lines
294 B
JavaScript
/*jshint
|
|
undef:true,
|
|
browser:true,
|
|
devel: true,
|
|
jquery:true,
|
|
strict:false,
|
|
curly:false,
|
|
indent:2
|
|
*/
|
|
|
|
(function() {
|
|
var $ = jQuery;
|
|
|
|
var exports = window.Shiny = window.Shiny || {};
|
|
|
|
|
|
$(document).on('submit', 'form:not([action])', function(e) {
|
|
e.preventDefault();
|
|
});
|