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