orbit-basic/app/assets/javascripts/inc/modal-preview.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

//Preview need a link in form as Ex and a corresponding PUT action in controller
//Ex preview trigger:
// <%= link_to "NewPreview", realtime_preview_admin_ad_banner_path(ad_banner_tab) , :class=>'preview_trigger'%>
$(document).ready(function() {
2012-09-04 01:24:12 +00:00
$("a.post_preview").click(function(e){
$("#main-wrap").after("<span id='show_preview'></span>");
e.preventDefault();
var form = $(this).parents("form").first()
//var cont = form["content"].value;
$.ajax({
type: 'POST',
url: $(this).attr("href")+'?preview=true',
data: form.serialize(),
dataType: "script",
success: function (msg) {
$("#"+start_modal_with_id).modal('show'); },
error: function(){
alert("ERROR");
}
});
return false
});
$("a.preview_trigger").click(function(){
2012-04-25 09:08:51 +00:00
$("#main-wrap").after("<span id='show_preview'></span>");
$.ajax({
2012-04-23 09:03:55 +00:00
type: 'PUT',
url:$(this).attr("href"),
2012-04-23 09:03:55 +00:00
data:$(this).parents("form").serialize(),
success: function (msg) {
$("#"+start_modal_with_id).modal('show'); },
error: function(){
alert("ERROR");
}
});
return false;
});
});