| 1234567891011121314151617181920212223242526272829303132333435363738 |
- // 加载 modal
- function load_modal(article_id, comment_id) {
- let modal_body = '#modal_body_' + comment_id;
- let modal_id = '#comment_' + comment_id;
- // 加载编辑器
- if ($(modal_body).children().length === 0) {
- let content = '<iframe src="/comment/post_comment/' +
- article_id +
- '/' +
- comment_id +
- '"' +
- ' frameborder="0" style="width: 100%; height: 100%;" id="iframe_' +
- comment_id +
- '"></iframe>';
- $(modal_body).append(content);
- }
- ;
- $(modal_id).modal('show');
- }
- $(".django-ckeditor-widget").removeAttr('style');
- $('#sidebar').stickySidebar({
- topSpacing: 20,
- bottomSpacing: 20,
- });
- (function ($) {
- "use strict";
- function initParallax() {
- $('#masthead').parallax("100%", 0.3);
- $('#content').parallax("20%", 0.7);
- }
- initParallax();
- })(jQuery);
|