Skip to content

Commit

Permalink
Ticket #4120 - Remove unused modernizer from Artificer and Timeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonLV committed Dec 12, 2022
1 parent 1c05d0c commit 2a6920e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ function __construct()
$this->setPageWidth('bx_artificer_page_width');
}

BxDolTemplate::getInstance()->addJs([
'modernizr.min.js'
]);

BxDolTemplate::getInstance()->addCss([
'https://rsms.me/inter/inter.css',
'menu-sidebar.css',
Expand Down
4 changes: 0 additions & 4 deletions modules/boonex/timeline/install/sql/disable.sql
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,3 @@ DELETE FROM `sys_email_templates` WHERE `Module` = 'bx_timeline';

-- CRON
DELETE FROM `sys_cron_jobs` WHERE `name` LIKE 'bx_timeline%';


-- PRELOADER
DELETE FROM `sys_preloader` WHERE `module` = 'bx_timeline';
6 changes: 0 additions & 6 deletions modules/boonex/timeline/install/sql/enable.sql
Original file line number Diff line number Diff line change
Expand Up @@ -562,9 +562,3 @@ INSERT INTO `sys_cron_jobs` (`name`, `time`, `class`, `file`, `service_call`) VA
('bx_timeline_hot', '0 * * * *', 'BxTimelineCronHot', 'modules/boonex/timeline/classes/BxTimelineCronHot.php', ''),
('bx_timeline_publishing', '* * * * *', 'BxTimelineCronPublishing', 'modules/boonex/timeline/classes/BxTimelineCronPublishing.php', ''),
('bx_timeline_clean', '0 0 * * *', 'BxTimelineCronClean', 'modules/boonex/timeline/classes/BxTimelineCronClean.php', '');


-- PRELOADER
SET @iOrderPreloader = (SELECT IFNULL(MAX(`order`), 9999) FROM `sys_preloader` WHERE `type`='js_system' AND `order` > 9999 LIMIT 1);
INSERT INTO `sys_preloader`(`module`, `type`, `content`, `active`, `order`) VALUES
('bx_timeline', 'js_system', 'modules/boonex/timeline/js/|modernizr.min.js', 1, @iOrderPreloader + 1);

0 comments on commit 2a6920e

Please sign in to comment.