mirror of
				https://github.com/gtbu/Typesetter-5.3-p8.git
				synced 2025-11-03 22:38:27 +01:00 
			
		
		
		
	unknown name and js shift
unknown var name and js shifted to settings because otherwise always present if cajon installed(bigger cms-js)
This commit is contained in:
		
							parent
							
								
									2dcd14b7f7
								
							
						
					
					
						commit
						a77e638910
					
				
					 3 changed files with 11 additions and 6 deletions
				
			
		| 
						 | 
				
			
			@ -13,10 +13,10 @@ class ThemeCajon{
 | 
			
		|||
    // enable FontAwesome everywhere
 | 
			
		||||
    \gp\tool::LoadComponents('fontawesome');
 | 
			
		||||
 | 
			
		||||
    // Cajon Parallax
 | 
			
		||||
     // Cajon Parallax  - js now in settings.php
 | 
			
		||||
    $page->css_user[] = $addonRelativeCode . '/addons/CajonParallax/CajonParallax.css';
 | 
			
		||||
    $page->head_js[]  = $addonRelativeCode . '/addons/CajonParallax/CajonParallax.js';
 | 
			
		||||
    $page->head_js[]  = $addonRelativeCode . '/addons/CajonParallax/jquery.scrollspeed/jQuery.scrollSpeed.js';
 | 
			
		||||
    //$page->head_js[]  = $addonRelativeCode . '/addons/CajonParallax/CajonParallax.js';
 | 
			
		||||
    //$page->head_js[]  = $addonRelativeCode . '/addons/CajonParallax/jquery.scrollspeed/jQuery.scrollSpeed.js';
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -71,8 +71,8 @@ class ThemeCajon_Settings{
 | 
			
		|||
    $layout             = isset($page->TitleInfo['gpLayout']) ? $page->TitleInfo['gpLayout'] : 'default';
 | 
			
		||||
    $layout             = isset($page->gpLayout) ? $page->gpLayout : $layout;
 | 
			
		||||
    $default_layout     = $config['gpLayout'];
 | 
			
		||||
   	$gplayoutsvar1 = $gpLayouts[$default_layout]['name'];
 | 
			
		||||
	$gplayoutsvar2 = $gpLayouts[$layout]['name'];
 | 
			
		||||
   	$gplayoutsvar1 = $gpLayouts[$default_layout]['name'] ?? 0;
 | 
			
		||||
	$gplayoutsvar2 = $gpLayouts[$layout]['name'] ?? 0;
 | 
			
		||||
	$current_theme_name = $layout == 'default' ? $gplayoutsvar1 : $gplayoutsvar2;
 | 
			
		||||
    $is_current_theme   = ($current_theme_name == $theme_name);
 | 
			
		||||
    return $is_current_theme;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -4,4 +4,9 @@ $GP_GETALLGADGETS = true;
 | 
			
		|||
$link = common::Link('','%s');
 | 
			
		||||
gpOutput::Area('header','<h1>'.$link.'</h1>');
 | 
			
		||||
gpOutput::Area('link_label','<h3>%s</h3>');
 | 
			
		||||
*/
 | 
			
		||||
*/
 | 
			
		||||
 | 
			
		||||
global $page;
 | 
			
		||||
// moved from theme.php - otherwise always present
 | 
			
		||||
$page->head_js[] = dirname($page->theme_path) . '/addons/CajonParallax/CajonParallax.js';
 | 
			
		||||
$page->head_js[] = dirname($page->theme_path) . '/addons/CajonParallax/jquery.scrollspeed/jQuery.scrollSpeed.js';
 | 
			
		||||
		Loading…
	
		Reference in a new issue