PluginProbe
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites / 1.3.3
BlockSpare – Gutenberg Blocks for News, Magazine, Blog & Business Websites v1.3.3
4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 2.6.1 All 38 releases
← All changes | src/init.php +9 -2 1.2.31.3.3 View file →
@@ -29,9 +29,9 @@
29 29 wp_enqueue_script('waypoint', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/countup/waypoints.min.js', array('jquery'), '', true);
30 30 wp_enqueue_script('jquery-masonry');
31 31
32 32 wp_enqueue_script('blockspare-script', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/frontend.js', array('jquery', 'waypoint', 'countup'), '', true);
33 -
33 + wp_enqueue_script('blockspare-tabs', BLOCKSPARE_PLUGIN_URL . 'src/assets/js/tabs.js', array('jquery'), '', true);
34 34 }
35 35
36 36 add_action('init', 'blockspare_blocks_block_assets');
37 37
@@ -90,9 +90,12 @@
90 90 'srcUrl' => untrailingslashit(plugins_url('/', BLOCKSPARE_BASE_DIR . '/dist/')),
91 91 'rest_url' => esc_url(rest_url()),
92 92 'img' => $blockspare_priview_img_url,
93 93 'menu_img_url' => $blockspare_food_img_url,
94 - 'taxonomies'=> json_encode($txnm)
94 + 'taxonomies'=> json_encode($txnm),
95 + 'config' => '',
96 + 'configuration' => '',
97 + 'settings' => '',
95 98 )
96 99 );
97 100 }
98 101
@@ -109,8 +112,9 @@
109 112 //Load Gutenberg Block php Files
110 113 include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/social-sharing/index.php');
111 114 include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/latest-posts-grid/index.php');
112 115 include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/latest-posts-list/index.php');
116 + //include(BLOCKSPARE_PLUGIN_DIR . '/src/blocks/pattern/pattern.php');
113 117
114 118
115 119 }
116 120
@@ -122,7 +126,10 @@
122 126 function blockspare_enqueue_admin_style()
123 127 {
124 128 wp_enqueue_style('slick', BLOCKSPARE_PLUGIN_URL . 'src/assets/slick/css/slick.css', array(), '', 'all');
125 129 }
130 +
131 +
132 +
126 133
127 134
128 135