orbit-basic/app/assets/javascripts/news_bulletin_form.js.erb

29 lines
855 B
Plaintext
Raw Normal View History

<%#= encoding: utf-8 %>
2012-06-27 01:59:32 +00:00
$(document).ready(function(){
//alert("News Loaded");
2012-04-30 00:32:54 +00:00
$('.news_bulletin_links_block a.delete').live('click', function(){
$(this).parents('.list_item').remove();
});
$('.news_bulletin_files_block a.delete').live('click', function(){
$(this).parents('.list_item').remove();
});
$(document).on('click', '.action a.remove_existing_record', function(){
if(confirm("<%= I18n.t('news.sure?')%>")){
$(this).next('.should_destroy').attr('value', 1);
$("tr#" + $(this).prev().attr('value')).hide();
}
2012-04-30 00:32:54 +00:00
});
$(document).on('click', '.quick_edit_cancel', function(){
tr = $(this).attr('rel');
$('#' + tr).hide();
$("tr#news_bulletin_file_" + $(this).prev().attr('value')).hide();
$("tr#news_bulletin_link_" + $(this).prev().attr('value')).hide();
2012-06-27 01:59:32 +00:00
});
2012-08-13 10:35:47 +00:00
$('.reject_info').tooltip({
placement : 'bottom'
});
2012-04-30 00:32:54 +00:00
});