Lines 160-180
Link Here
|
160 |
] |
160 |
] |
161 |
} )); |
161 |
} )); |
162 |
|
162 |
|
163 |
$(".delete_club").on("click", function(e){ |
163 |
$("body").on("click", ".delete_club", function(e){ |
164 |
e.preventDefault(); |
164 |
e.preventDefault(); |
165 |
var club_id = $(this).data("id"); |
165 |
var club_id = $(this).data("id"); |
166 |
var club_name = $(this).data("name"); |
166 |
var club_name = $(this).data("name"); |
167 |
ConfirmDeleteClub( club_id, club_name ); |
167 |
ConfirmDeleteClub( club_id, club_name ); |
168 |
}); |
168 |
}); |
169 |
|
169 |
|
170 |
$(".delete_template").on("click", function(e){ |
170 |
$("body").on("click", ".delete_template", function(e){ |
171 |
e.preventDefault(); |
171 |
e.preventDefault(); |
172 |
var template_id = $(this).data("id"); |
172 |
var template_id = $(this).data("id"); |
173 |
var template_name = $(this).data("name"); |
173 |
var template_name = $(this).data("name"); |
174 |
ConfirmDeleteTemplate( template_id, template_name ); |
174 |
ConfirmDeleteTemplate( template_id, template_name ); |
175 |
}); |
175 |
}); |
176 |
|
176 |
|
177 |
$(".club_hold_search").on("click", function(e){ |
177 |
$("body").on("click", ".club_hold_search", function(e){ |
178 |
e.preventDefault; |
178 |
e.preventDefault; |
179 |
var club_id = $(this).data("id"); |
179 |
var club_id = $(this).data("id"); |
180 |
SearchToHold( club_id ); |
180 |
SearchToHold( club_id ); |
181 |
- |
|
|