2017-10-22 18:00:42 +00:00
|
|
|
if (typeof jQuery === 'undefined') {
|
|
|
|
throw new Error('Baby Buddy requires jQuery.')
|
|
|
|
}
|
|
|
|
|
2020-01-27 22:56:37 +00:00
|
|
|
/**
|
|
|
|
* Baby Buddy Namespace
|
|
|
|
*
|
|
|
|
* Default namespace for the Baby Buddy app.
|
2020-02-04 18:52:05 +00:00
|
|
|
*
|
|
|
|
* @type {{}}
|
2020-01-27 22:56:37 +00:00
|
|
|
*/
|
2017-10-22 18:00:42 +00:00
|
|
|
var BabyBuddy = function () {
|
2020-01-27 22:56:37 +00:00
|
|
|
return {};
|
2017-10-22 18:00:42 +00:00
|
|
|
}();
|
2020-01-27 22:56:37 +00:00
|
|
|
|
2020-02-04 18:52:05 +00:00
|
|
|
/**
|
|
|
|
* Pull to refresh.
|
|
|
|
*
|
|
|
|
* @type {{init: BabyBuddy.PullToRefresh.init, onRefresh: BabyBuddy.PullToRefresh.onRefresh}}
|
|
|
|
*/
|
|
|
|
BabyBuddy.PullToRefresh = function(ptr) {
|
|
|
|
return {
|
|
|
|
init: function () {
|
|
|
|
ptr.init({
|
|
|
|
mainElement: 'body',
|
|
|
|
onRefresh: this.onRefresh
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
onRefresh: function() {
|
|
|
|
window.location.reload();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}(PullToRefresh);
|
2020-10-28 17:58:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Fix for duplicate form submission from double pressing submit
|
|
|
|
*/
|
2022-07-13 14:44:42 +00:00
|
|
|
function preventDoubleSubmit() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$('form').off("submit", preventDoubleSubmit);
|
2020-10-28 17:58:47 +00:00
|
|
|
$("form").on("submit", function() {
|
2022-07-13 14:44:42 +00:00
|
|
|
$(this).on("submit", preventDoubleSubmit);
|
|
|
|
});
|