PDF rausgenommen
This commit is contained in:
44
msd2/wordpress/wp-content/plugins/cachify/js/post.js
Normal file
44
msd2/wordpress/wp-content/plugins/cachify/js/post.js
Normal file
@ -0,0 +1,44 @@
|
||||
jQuery(document).ready(
|
||||
function($) {
|
||||
|
||||
$('.edit-cachify-status', '#misc-publishing-actions').click(
|
||||
function(e) {
|
||||
$(this)
|
||||
.next(':hidden')
|
||||
.slideDown('fast')
|
||||
.end()
|
||||
.hide();
|
||||
|
||||
e.preventDefault();
|
||||
}
|
||||
);
|
||||
|
||||
$('.save-cachify-status', '#misc-publishing-actions').click(
|
||||
function(e) {
|
||||
$(this)
|
||||
.parent()
|
||||
.slideUp('fast')
|
||||
.prev(':hidden')
|
||||
.show();
|
||||
|
||||
$('#output-cachify-status').text(
|
||||
$('#cachify_status').children('option:selected').text()
|
||||
);
|
||||
|
||||
e.preventDefault();
|
||||
}
|
||||
);
|
||||
|
||||
$('.cancel-cachify-status', '#misc-publishing-actions').click(
|
||||
function(e) {
|
||||
$(this)
|
||||
.parent()
|
||||
.slideUp('fast')
|
||||
.prev(':hidden')
|
||||
.show();
|
||||
|
||||
e.preventDefault();
|
||||
}
|
||||
);
|
||||
}
|
||||
);
|
2
msd2/wordpress/wp-content/plugins/cachify/js/post.min.js
vendored
Normal file
2
msd2/wordpress/wp-content/plugins/cachify/js/post.min.js
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
jQuery(document).ready(function(a){a(".edit-cachify-status","#misc-publishing-actions").click(function(b){a(this).next(":hidden").slideDown("fast").end().hide();b.preventDefault()});a(".save-cachify-status","#misc-publishing-actions").click(function(b){a(this).parent().slideUp("fast").prev(":hidden").show();a("#output-cachify-status").text(a("#cachify_status").children("option:selected").text());b.preventDefault()});a(".cancel-cachify-status","#misc-publishing-actions").click(function(b){a(this).parent().slideUp("fast").prev(":hidden").show();
|
||||
b.preventDefault()})});
|
Reference in New Issue
Block a user