You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /**
- * prevents Uncaught TypeError in detail template if bookcreator plug-in is installed
- *
- * @author Jana Deutschlaender <deutschlaender@cosmocode.de>
- *
- */
- (function($) {
-
-
- var debugBookCreatorOnDetailTemplate = function(){
-
- var $detail = $('#dokuwiki__detail');
- if (!$detail.length) return;
-
- if(JSINFO.bookcreator === undefined) {
- JSINFO.bookcreator = {};
- JSINFO.bookcreator.areToolsVisible = false;
- }
- };
-
- $(function(){
- debugBookCreatorOnDetailTemplate();
- });
-
-
- })(jQuery);
|