Chapter is quite ok

ajax loaded content
graphics ok
interactivity ok
remains the video interactions
This commit is contained in:
Bachir Soussi Chiadmi
2015-03-10 20:23:17 +01:00
parent d5edfa75c8
commit dab5226cd7
30 changed files with 3508 additions and 399 deletions
@@ -21,8 +21,6 @@ $heads['HandheldFriendly'] = array(
),
);
# Mobile Viewport Fix
# j.mp/mobileviewport & davidbcalhoun.com/2010/viewport-metatag
# device-width : Occupy full width of the screen in its current orientation
@@ -33,12 +31,10 @@ $heads['viewport'] = array(
'#tag' => 'meta',
'#attributes' => array(
'name' => 'viewport',
'content' => 'width=device-width,initial-scale=1',
'content' => 'width=device-width,initial-scale=1,maximum-scale=1',
),
);
# Add these icons links to your sub theme
# or Place favicon.ico and apple-touch-icon.png in the root of your domain and delete these references
@@ -62,6 +58,22 @@ $heads['apple-touch-icon'] = array(
),
);
$heads['manifest'] = array(
'#tag' => 'link',
'#attributes' => array(
'href' => base_path() . path_to_theme() .'/manifest.webapp'
),
);
$heads['manifest'] = array(
'#tag' => 'meta',
'#attributes' => array(
'name' => "application-name",
'content' => "Store Finder"
),
);
foreach ($heads as $type=>$head)
drupal_add_html_head($head, $type);