2014-01-16 10:15:00 +00:00
|
|
|
$(function() {
|
|
|
|
$(".post_preview").click(function(){
|
|
|
|
$("#main-wrap").after("<span id='show_preview'></span>");
|
2014-02-06 07:07:38 +00:00
|
|
|
|
2014-06-25 03:33:19 +00:00
|
|
|
var preview_url = $(this).attr('url');
|
2014-01-16 10:15:00 +00:00
|
|
|
|
2014-06-25 03:33:19 +00:00
|
|
|
for ( instance in CKEDITOR.instances )
|
|
|
|
CKEDITOR.instances[instance].updateElement();
|
|
|
|
|
|
|
|
var formData = new FormData( $('form.previewable')[0] );
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: "post",
|
|
|
|
url: preview_url,
|
|
|
|
data : formData,
|
|
|
|
processData: false,
|
|
|
|
contentType: false
|
|
|
|
}).done(function(data){
|
|
|
|
$('#show_preview').html(data);
|
2014-02-06 07:07:38 +00:00
|
|
|
$('#show_preview .modal').modal()
|
2014-06-25 03:33:19 +00:00
|
|
|
$('#show_preview .modal').height(($(window).height() * 0.7));
|
|
|
|
});
|
2014-01-16 10:15:00 +00:00
|
|
|
});
|
|
|
|
$(".preview_trigger").click(function(){
|
|
|
|
$("#main-wrap").after("<span id='show_preview'></span>");
|
|
|
|
$.ajax({
|
|
|
|
type: 'PUT',
|
|
|
|
url: $(this).attr("href"),
|
|
|
|
data: $(this).parents("form").serialize(),
|
|
|
|
success: function (msg) {
|
|
|
|
$('#show_preview .modal').modal();
|
|
|
|
$('#show_preview .modal').height(function() {
|
|
|
|
return $(window).height() * 0.7;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
error: function(){
|
|
|
|
alert("ERROR");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
// $('#main-wrap').on(clickEvent, '.post_preview, .preview_trigger', function(e) {
|
|
|
|
// $("#main-wrap").after("<span id='show_preview'></span>");
|
|
|
|
// if($(this).hasClass('post_preview')) {
|
|
|
|
// var attrs = e.target.attributes;
|
|
|
|
// var url = attrs['url'];
|
|
|
|
// $("form.previewable").ajaxSubmit({
|
|
|
|
// beforeSubmit: function(a,f,o){
|
|
|
|
// o.dataType = 'script';
|
|
|
|
// o.url = url.nodeValue;
|
|
|
|
// o.type = 'post';
|
|
|
|
// },success: function(msg) {
|
2014-02-06 07:07:38 +00:00
|
|
|
// $('#show_preview .modal').modal()
|
|
|
|
// $('#show_preview .modal').height(function() {
|
|
|
|
// return $(window).height() * 0.7;
|
|
|
|
// });
|
2014-01-16 10:15:00 +00:00
|
|
|
// }
|
|
|
|
|
|
|
|
// });
|
|
|
|
// } else if($(this).hasClass('preview_trigger')) {
|
|
|
|
// $.ajax({
|
|
|
|
// type: 'PUT',
|
|
|
|
// url: $(this).attr("href"),
|
|
|
|
// data: $(this).parents("form").serialize(),
|
|
|
|
// success: function (msg) {
|
|
|
|
// $('#show_preview .modal').modal();
|
|
|
|
// $('#show_preview .modal').height(function() {
|
|
|
|
// return $(window).height() * 0.7;
|
|
|
|
// });
|
|
|
|
// },
|
|
|
|
// error: function(){
|
|
|
|
// alert("ERROR");
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
// });
|
|
|
|
});
|