X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=templates%2Fde%2Fhtml%2Fjs%2Fjs_surfbar_member_book.tpl;h=30ea9c22260ef708f803b6a75255f2c5210b89a5;hp=8ec8ffcc912f5c8bfacee7c224cdf9916bed5eab;hb=61621983cc6d7195fcc7eab29b5f6080ff283b34;hpb=7052cc3bd3ca07281078acbbce6ce595d753def1 diff --git a/templates/de/html/js/js_surfbar_member_book.tpl b/templates/de/html/js/js_surfbar_member_book.tpl index 8ec8ffcc91..30ea9c2226 100644 --- a/templates/de/html/js/js_surfbar_member_book.tpl +++ b/templates/de/html/js/js_surfbar_member_book.tpl @@ -1,13 +1,8 @@ /** * JavaScript for ext-surfbar - member booking script * -------------------------------------------------------------------- - * $Revision:: $ - * $Date:: $ - * $Tag:: 0.2.1-FINAL $ - * $Author:: $ - * -------------------------------------------------------------------- * Copyright (c) 2003 - 2009 by Roland Haeder - * Copyright (c) 2009 - 2012 by Mailer Developer Team + * Copyright (c) 2009 - 2016 by Mailer Developer Team * For more information visit: http://mxchange.org * * This program is free software; you can redistribute it and/or modify @@ -97,3 +92,32 @@ function resetForm () { focusLimitedNo(); document.getElementById('url').focus(); + +// Register all event listeners +$('#book').submit(function() { + return submitForm(); +}); + +$('#reset').click(function() { + return resetForm(); +}); + +$('#limit').click(function() { + return focusLimit(); +}); + +$('#limit').blur(function() { + return blurLimit(); +}); + +$('#limit').change(function() { + return changeLimited(); +}); + +$('#limited_no').click(function() { + return focusLimitedNo(); +}); + +$('#limited_yes').click(function() { + return focusLimitedYes(); +});