PHP Classes

File: src/Cabin/Bridge/public/blog_post_new.js

Recommend this page to a friend!
  Classes of Scott Arciszewski   CMS Airship   src/Cabin/Bridge/public/blog_post_new.js   Download  
File: src/Cabin/Bridge/public/blog_post_new.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: CMS Airship
Content management system with security features
Author: By
Last change: Save and update metadata fields
Date: 7 years ago
Size: 430 bytes
 

Contents

Class file image Download
$(document).ready(function() { $("#blog_post_category").children("option").each(function () { $(this).html($(this).data('fullpath')); }); $("#blog_posts_metadata").hide(0); $("#show_metadata").on('change', function() { if ($("#show_metadata").is(":checked")) { $("#blog_posts_metadata").show(100); } else { $("#blog_posts_metadata").hide(100); } }); });