mirror of
https://github.com/internetee/registry.git
synced 2025-07-22 10:45:58 +02:00
Run all inline JS on window.ready
This commit is contained in:
parent
d2ea3fc944
commit
627069e776
7 changed files with 15 additions and 8 deletions
|
@ -22,6 +22,7 @@
|
|||
= text_field_tag "domain[contacts_attributes][#{k}][code_helper]", contacts.find_by(code: v['code']).try(:search_name), class: 'form-control', data: {autocomplete: search_contacts_registrar_domains_path}, required: true
|
||||
|
||||
:coffee
|
||||
window.ready = ->
|
||||
clone = $('.js-contact:first').clone()
|
||||
$("#js-domain-contacts").nestedAttributes
|
||||
bindAddTo: $(".add-domain-contact")
|
||||
|
|
|
@ -68,6 +68,7 @@
|
|||
class: 'form-control'
|
||||
|
||||
:coffee
|
||||
window.ready = ->
|
||||
$("#dnskeys").nestedAttributes
|
||||
bindAddTo: $(".add-dnskey")
|
||||
afterAdd: (item) ->
|
||||
|
|
|
@ -27,5 +27,6 @@
|
|||
= text_field_tag "domain[nameservers_attributes][#{k}][ipv6]", v['ipv6'],
|
||||
class: 'form-control'#, ipv6: true
|
||||
:coffee
|
||||
window.ready = ->
|
||||
$("#nameservers").nestedAttributes
|
||||
bindAddTo: $(".add-nameserver")
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
|
||||
|
||||
:coffeescript
|
||||
$(document).ready ->
|
||||
window.ready = ->
|
||||
$('.payment-form form').submit()
|
|
@ -82,8 +82,9 @@
|
|||
%p.bg-info{style: 'padding: 15px;'}= t(:you_have_no_new_messages)
|
||||
|
||||
:coffee
|
||||
$(".js-keyrelay-confirm").on "click", ->
|
||||
$(".js-keyrelay-form").submit()
|
||||
window.ready = ->
|
||||
$(".js-keyrelay-confirm").on "click", ->
|
||||
$(".js-keyrelay-form").submit()
|
||||
|
||||
$(".js-transfer-confirm").on "click", ->
|
||||
$(".js-transfer-form").submit()
|
||||
$(".js-transfer-confirm").on "click", ->
|
||||
$(".js-transfer-form").submit()
|
||||
|
|
|
@ -13,7 +13,8 @@
|
|||
00007, 60000007, 00000766
|
||||
|
||||
:coffee
|
||||
$('.js-login').attr('disabled', false)
|
||||
window.ready = ->
|
||||
$('.js-login').attr('disabled', false)
|
||||
|
||||
status_interval = null
|
||||
mid_status = () ->
|
||||
|
|
|
@ -61,8 +61,10 @@
|
|||
= CodeRay.scan(@result.to_s.force_encoding("UTF-8"), :xml).div().html_safe
|
||||
|
||||
:javascript
|
||||
window.addEventListener('load',
|
||||
function(){
|
||||
$('.js-load-xml').click(function() {
|
||||
$.get('xml_console/load_xml', {obj: $(this).data('obj'), epp_action: $(this).data('epp-action')}, function(data) {
|
||||
$('textarea[name="payload"]').html(data);
|
||||
});
|
||||
});
|
||||
});});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue