manoverboard-alpha 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +136 -0
- data/_config.yml +96 -0
- data/_includes/footer.html +3 -0
- data/_includes/head.html +57 -0
- data/_layouts/archive.html +22 -0
- data/_layouts/blog.html +7 -0
- data/_layouts/default.html +7 -0
- data/_layouts/home.html +7 -0
- data/_layouts/page.html +7 -0
- data/_layouts/post.html +7 -0
- data/_layouts/search.html +20 -0
- data/_sass/init.scss +515 -0
- data/_sass/layout.scss +125 -0
- data/_sass/responsive.scss +22 -0
- data/assets/config-file-example_config.yml +89 -0
- data/assets/css/main.scss +374 -0
- data/assets/css/style-print.css +137 -0
- data/assets/favicon.ico +0 -0
- data/assets/js/global.js +179 -0
- data/assets/js/html5shiv.js +301 -0
- data/assets/search/search.html +4 -0
- data/assets/search/search.json +16 -0
- metadata +26 -3
@@ -0,0 +1,137 @@
|
|
1
|
+
/**
|
2
|
+
* Print Stylesheet fuer Deinewebsite.de
|
3
|
+
* @version 1.0
|
4
|
+
* @lastmodified 16.06.2016
|
5
|
+
*/
|
6
|
+
|
7
|
+
@media print {
|
8
|
+
#content,
|
9
|
+
#page {
|
10
|
+
width: 100% !important;
|
11
|
+
margin: 0 !important;
|
12
|
+
float: none !important;
|
13
|
+
}
|
14
|
+
|
15
|
+
@page {
|
16
|
+
margin: 2cm !important;
|
17
|
+
}
|
18
|
+
body {
|
19
|
+
font-family: Arial, sans-serif;
|
20
|
+
font-size: 13pt !important;
|
21
|
+
line-height: 1.3 !important;
|
22
|
+
background: #fff !important;
|
23
|
+
color: #000 !important;
|
24
|
+
}
|
25
|
+
|
26
|
+
h1 {
|
27
|
+
font-size: 24pt !important;
|
28
|
+
}
|
29
|
+
|
30
|
+
h2,
|
31
|
+
h3,
|
32
|
+
h4 {
|
33
|
+
font-size: 14pt !important;
|
34
|
+
margin-top: 25px !important;
|
35
|
+
}
|
36
|
+
|
37
|
+
/* Alle Seitenumbrüche definieren */
|
38
|
+
a {
|
39
|
+
page-break-inside: avoid !important;
|
40
|
+
}
|
41
|
+
blockquote {
|
42
|
+
page-break-inside: avoid !important;
|
43
|
+
}
|
44
|
+
h1,
|
45
|
+
h2,
|
46
|
+
h3,
|
47
|
+
h4,
|
48
|
+
h5,
|
49
|
+
h6 {
|
50
|
+
page-break-after: avoid !important;
|
51
|
+
page-break-inside: avoid !important;
|
52
|
+
}
|
53
|
+
img {
|
54
|
+
page-break-inside: avoid !important;
|
55
|
+
page-break-after: avoid !important;
|
56
|
+
}
|
57
|
+
table,
|
58
|
+
pre {
|
59
|
+
page-break-inside: avoid !important;
|
60
|
+
}
|
61
|
+
ul,
|
62
|
+
ol,
|
63
|
+
dl {
|
64
|
+
page-break-before: avoid !important;
|
65
|
+
}
|
66
|
+
|
67
|
+
/* Linkfarbe und Linkverhalten darstellen */
|
68
|
+
a:link,
|
69
|
+
a:visited,
|
70
|
+
a {
|
71
|
+
background: transparent !important;
|
72
|
+
color: #520 !important;
|
73
|
+
font-weight: bold !important;
|
74
|
+
text-decoration: underline !important;
|
75
|
+
text-align: left !important;
|
76
|
+
}
|
77
|
+
|
78
|
+
a {
|
79
|
+
page-break-inside: avoid !important;
|
80
|
+
}
|
81
|
+
|
82
|
+
a[href^=http]:after {
|
83
|
+
content: " <" attr(href) "> ";
|
84
|
+
}
|
85
|
+
|
86
|
+
article a[href^="#"]:after {
|
87
|
+
content: "";
|
88
|
+
}
|
89
|
+
|
90
|
+
a:not(:local-link):after {
|
91
|
+
content: " <" attr(href) "> ";
|
92
|
+
}
|
93
|
+
|
94
|
+
iframe,
|
95
|
+
ins,
|
96
|
+
img,
|
97
|
+
#footer {
|
98
|
+
display: none !important;
|
99
|
+
width: 0 !important;
|
100
|
+
height: 0 !important;
|
101
|
+
overflow: hidden !important;
|
102
|
+
line-height: 0pt !important;
|
103
|
+
white-space: nowrap !important;
|
104
|
+
}
|
105
|
+
.embed-youtube,
|
106
|
+
.embed-responsive {
|
107
|
+
position: absolute !important;
|
108
|
+
height: 0 !important;
|
109
|
+
overflow: hidden !important;
|
110
|
+
}
|
111
|
+
|
112
|
+
p,
|
113
|
+
address,
|
114
|
+
li,
|
115
|
+
dt,
|
116
|
+
dd,
|
117
|
+
blockquote {
|
118
|
+
font-size: 100% !important;
|
119
|
+
}
|
120
|
+
|
121
|
+
code,
|
122
|
+
pre {
|
123
|
+
font-family: "Courier New", Courier, mono !important;
|
124
|
+
}
|
125
|
+
|
126
|
+
ul,
|
127
|
+
ol {
|
128
|
+
list-style: square !important;
|
129
|
+
margin-left: 18pt !important;
|
130
|
+
margin-bottom: 20pt !important;
|
131
|
+
}
|
132
|
+
|
133
|
+
li {
|
134
|
+
line-height: 1.6em !important;
|
135
|
+
}
|
136
|
+
|
137
|
+
}
|
data/assets/favicon.ico
ADDED
Binary file
|
data/assets/js/global.js
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
// —————————————————————————————————————————————————————
|
2
|
+
// Check browser & and inform user if it is out of date
|
3
|
+
// —————————————————————————————————————————————————————
|
4
|
+
var $buoop = {
|
5
|
+
required: {
|
6
|
+
e: -6,
|
7
|
+
f: -6,
|
8
|
+
o: -6,
|
9
|
+
s: -4,
|
10
|
+
c: -6
|
11
|
+
},
|
12
|
+
insecure: true,
|
13
|
+
api: 2019.11
|
14
|
+
};
|
15
|
+
|
16
|
+
function $buo_f() {
|
17
|
+
var e = document.createElement("script");
|
18
|
+
e.src = "//browser-update.org/update.min.js";
|
19
|
+
document.body.appendChild(e);
|
20
|
+
};
|
21
|
+
try {
|
22
|
+
document.addEventListener("DOMContentLoaded", $buo_f, false)
|
23
|
+
} catch (e) {
|
24
|
+
window.attachEvent("onload", $buo_f)
|
25
|
+
}
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
// —————————————————————————————————————————————————————
|
30
|
+
// add class to target users with js or no js
|
31
|
+
// —————————————————————————————————————————————————————
|
32
|
+
document.documentElement.classList.remove("no-js");
|
33
|
+
document.documentElement.classList.add("js");
|
34
|
+
|
35
|
+
|
36
|
+
// —————————————————————————————————————————————————————
|
37
|
+
// is touch device
|
38
|
+
// —————————————————————————————————————————————————————
|
39
|
+
function is_touch_device() {
|
40
|
+
var prefixes = ' -webkit- -moz- -o- -ms- '.split(' ');
|
41
|
+
var mq = function (query) {
|
42
|
+
return window.matchMedia(query).matches;
|
43
|
+
}
|
44
|
+
if (('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch) {
|
45
|
+
return true;
|
46
|
+
}
|
47
|
+
var query = ['(', prefixes.join('touch-enabled),('), 'heartz', ')'].join('');
|
48
|
+
return mq(query);
|
49
|
+
}
|
50
|
+
|
51
|
+
// —————————————————————————————————————————————————————
|
52
|
+
// is keyboard user
|
53
|
+
// —————————————————————————————————————————————————————
|
54
|
+
(function () {
|
55
|
+
'use strict';
|
56
|
+
|
57
|
+
function keyboardFocus (e) {
|
58
|
+
if (e.keyCode !== 9) {
|
59
|
+
return;
|
60
|
+
}
|
61
|
+
|
62
|
+
switch (e.target.nodeName.toLowerCase()) {
|
63
|
+
case 'input':
|
64
|
+
case 'select':
|
65
|
+
case 'textarea':
|
66
|
+
break;
|
67
|
+
default:
|
68
|
+
document.documentElement.classList.add('keyboard-focus');
|
69
|
+
document.removeEventListener('keydown', keyboardFocus, false);
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
document.addEventListener('keydown', keyboardFocus, false);
|
74
|
+
})();
|
75
|
+
|
76
|
+
|
77
|
+
// —————————————————————————————————————————————————————
|
78
|
+
// make bg image square function
|
79
|
+
// —————————————————————————————————————————————————————
|
80
|
+
// add class "make-square" to elements
|
81
|
+
// not tested, may be broken. contact Nikki if broken
|
82
|
+
document.addEventListener("DOMContentLoaded", function () {
|
83
|
+
let squim = $('.make-square');
|
84
|
+
|
85
|
+
if (squim) {
|
86
|
+
function squareImage() {
|
87
|
+
let squimWidth = $('.make-square').width();
|
88
|
+
$('.make-square').css("height", squimWidth + 'px');
|
89
|
+
}
|
90
|
+
// init
|
91
|
+
squareImage();
|
92
|
+
window.addEventListener("resize", squareImage);
|
93
|
+
}
|
94
|
+
});
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
// Remember to minimize this file before putting into production site
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
$(document).ready(function () {
|
103
|
+
// —————————————————————————————————————————————————————
|
104
|
+
// scroll events
|
105
|
+
// —————————————————————————————————————————————————————
|
106
|
+
$(window).scroll(function () {
|
107
|
+
|
108
|
+
});
|
109
|
+
|
110
|
+
|
111
|
+
// —————————————————————————————————————————————————————
|
112
|
+
// search dropdown
|
113
|
+
// —————————————————————————————————————————————————————
|
114
|
+
var clicked = false;
|
115
|
+
|
116
|
+
$('#toggleSearch').click(function() {
|
117
|
+
toggleBtnClick();
|
118
|
+
});
|
119
|
+
|
120
|
+
$('#searchClose').click(function() {
|
121
|
+
toggleBtnClick();
|
122
|
+
});
|
123
|
+
|
124
|
+
function toggleBtnClick() {
|
125
|
+
if (clicked) {
|
126
|
+
$('#searchContainer').addClass('search--hide');
|
127
|
+
clicked = false;
|
128
|
+
} else {
|
129
|
+
$('#searchContainer').removeClass('search--hide');
|
130
|
+
clicked = true;
|
131
|
+
$('#s').focus();
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
|
136
|
+
// —————————————————————————————————————————————————————
|
137
|
+
// mobile navigation starter
|
138
|
+
// —————————————————————————————————————————————————————
|
139
|
+
// set vars to "nav is closed"
|
140
|
+
var clickedNav = false;
|
141
|
+
|
142
|
+
// --------------------------------- toggleNav Function
|
143
|
+
function toggleNav() {
|
144
|
+
// if var is true (nav is open), then close the nav and reset the var to false (nav is closed)
|
145
|
+
if (!clickedNav) {
|
146
|
+
TweenMax.to( $('#navContainer'), 1, {
|
147
|
+
ease: Elastic.easeOut.config(1, 0.75),
|
148
|
+
top: "0"
|
149
|
+
});
|
150
|
+
clickedNav = false;
|
151
|
+
}
|
152
|
+
}
|
153
|
+
|
154
|
+
// if the nav button is clicked, execute function
|
155
|
+
jQuery('#toggleNav').click(function () {
|
156
|
+
toggleNav();
|
157
|
+
});
|
158
|
+
|
159
|
+
// --------------------------------- closeNav Function
|
160
|
+
function closeNav() {
|
161
|
+
clickedSubNav = false;
|
162
|
+
// close main nav
|
163
|
+
TweenMax.to( $('#navContainer'), .75, {
|
164
|
+
ease: Elastic.easeIn.config(1, 0.75),
|
165
|
+
top: "-100vh"
|
166
|
+
});
|
167
|
+
// reset the var to false/closed
|
168
|
+
clickedSubNav = false;
|
169
|
+
}
|
170
|
+
|
171
|
+
// if the close (x) button is clicked, execute the function
|
172
|
+
jQuery('#closeNav').click(function () {
|
173
|
+
closeNav();
|
174
|
+
});
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
|
179
|
+
}); // end document.ready
|
@@ -0,0 +1,301 @@
|
|
1
|
+
/**
|
2
|
+
* @preserve HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed
|
3
|
+
*/
|
4
|
+
;(function(window, document) {
|
5
|
+
/*jshint evil:true */
|
6
|
+
/** version */
|
7
|
+
var version = '3.7.0';
|
8
|
+
|
9
|
+
/** Preset options */
|
10
|
+
var options = window.html5 || {};
|
11
|
+
|
12
|
+
/** Used to skip problem elements */
|
13
|
+
var reSkip = /^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i;
|
14
|
+
|
15
|
+
/** Not all elements can be cloned in IE **/
|
16
|
+
var saveClones = /^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i;
|
17
|
+
|
18
|
+
/** Detect whether the browser supports default html5 styles */
|
19
|
+
var supportsHtml5Styles;
|
20
|
+
|
21
|
+
/** Name of the expando, to work with multiple documents or to re-shiv one document */
|
22
|
+
var expando = '_html5shiv';
|
23
|
+
|
24
|
+
/** The id for the the documents expando */
|
25
|
+
var expanID = 0;
|
26
|
+
|
27
|
+
/** Cached data for each document */
|
28
|
+
var expandoData = {};
|
29
|
+
|
30
|
+
/** Detect whether the browser supports unknown elements */
|
31
|
+
var supportsUnknownElements;
|
32
|
+
|
33
|
+
(function() {
|
34
|
+
try {
|
35
|
+
var a = document.createElement('a');
|
36
|
+
a.innerHTML = '<xyz></xyz>';
|
37
|
+
//if the hidden property is implemented we can assume, that the browser supports basic HTML5 Styles
|
38
|
+
supportsHtml5Styles = ('hidden' in a);
|
39
|
+
|
40
|
+
supportsUnknownElements = a.childNodes.length == 1 || (function() {
|
41
|
+
// assign a false positive if unable to shiv
|
42
|
+
(document.createElement)('a');
|
43
|
+
var frag = document.createDocumentFragment();
|
44
|
+
return (
|
45
|
+
typeof frag.cloneNode == 'undefined' ||
|
46
|
+
typeof frag.createDocumentFragment == 'undefined' ||
|
47
|
+
typeof frag.createElement == 'undefined'
|
48
|
+
);
|
49
|
+
}());
|
50
|
+
} catch(e) {
|
51
|
+
// assign a false positive if detection fails => unable to shiv
|
52
|
+
supportsHtml5Styles = true;
|
53
|
+
supportsUnknownElements = true;
|
54
|
+
}
|
55
|
+
|
56
|
+
}());
|
57
|
+
|
58
|
+
/*--------------------------------------------------------------------------*/
|
59
|
+
|
60
|
+
/**
|
61
|
+
* Creates a style sheet with the given CSS text and adds it to the document.
|
62
|
+
* @private
|
63
|
+
* @param {Document} ownerDocument The document.
|
64
|
+
* @param {String} cssText The CSS text.
|
65
|
+
* @returns {StyleSheet} The style element.
|
66
|
+
*/
|
67
|
+
function addStyleSheet(ownerDocument, cssText) {
|
68
|
+
var p = ownerDocument.createElement('p'),
|
69
|
+
parent = ownerDocument.getElementsByTagName('head')[0] || ownerDocument.documentElement;
|
70
|
+
|
71
|
+
p.innerHTML = 'x<style>' + cssText + '</style>';
|
72
|
+
return parent.insertBefore(p.lastChild, parent.firstChild);
|
73
|
+
}
|
74
|
+
|
75
|
+
/**
|
76
|
+
* Returns the value of `html5.elements` as an array.
|
77
|
+
* @private
|
78
|
+
* @returns {Array} An array of shived element node names.
|
79
|
+
*/
|
80
|
+
function getElements() {
|
81
|
+
var elements = html5.elements;
|
82
|
+
return typeof elements == 'string' ? elements.split(' ') : elements;
|
83
|
+
}
|
84
|
+
|
85
|
+
/**
|
86
|
+
* Returns the data associated to the given document
|
87
|
+
* @private
|
88
|
+
* @param {Document} ownerDocument The document.
|
89
|
+
* @returns {Object} An object of data.
|
90
|
+
*/
|
91
|
+
function getExpandoData(ownerDocument) {
|
92
|
+
var data = expandoData[ownerDocument[expando]];
|
93
|
+
if (!data) {
|
94
|
+
data = {};
|
95
|
+
expanID++;
|
96
|
+
ownerDocument[expando] = expanID;
|
97
|
+
expandoData[expanID] = data;
|
98
|
+
}
|
99
|
+
return data;
|
100
|
+
}
|
101
|
+
|
102
|
+
/**
|
103
|
+
* returns a shived element for the given nodeName and document
|
104
|
+
* @memberOf html5
|
105
|
+
* @param {String} nodeName name of the element
|
106
|
+
* @param {Document} ownerDocument The context document.
|
107
|
+
* @returns {Object} The shived element.
|
108
|
+
*/
|
109
|
+
function createElement(nodeName, ownerDocument, data){
|
110
|
+
if (!ownerDocument) {
|
111
|
+
ownerDocument = document;
|
112
|
+
}
|
113
|
+
if(supportsUnknownElements){
|
114
|
+
return ownerDocument.createElement(nodeName);
|
115
|
+
}
|
116
|
+
if (!data) {
|
117
|
+
data = getExpandoData(ownerDocument);
|
118
|
+
}
|
119
|
+
var node;
|
120
|
+
|
121
|
+
if (data.cache[nodeName]) {
|
122
|
+
node = data.cache[nodeName].cloneNode();
|
123
|
+
} else if (saveClones.test(nodeName)) {
|
124
|
+
node = (data.cache[nodeName] = data.createElem(nodeName)).cloneNode();
|
125
|
+
} else {
|
126
|
+
node = data.createElem(nodeName);
|
127
|
+
}
|
128
|
+
|
129
|
+
// Avoid adding some elements to fragments in IE < 9 because
|
130
|
+
// * Attributes like `name` or `type` cannot be set/changed once an element
|
131
|
+
// is inserted into a document/fragment
|
132
|
+
// * Link elements with `src` attributes that are inaccessible, as with
|
133
|
+
// a 403 response, will cause the tab/window to crash
|
134
|
+
// * Script elements appended to fragments will execute when their `src`
|
135
|
+
// or `text` property is set
|
136
|
+
return node.canHaveChildren && !reSkip.test(nodeName) ? data.frag.appendChild(node) : node;
|
137
|
+
}
|
138
|
+
|
139
|
+
/**
|
140
|
+
* returns a shived DocumentFragment for the given document
|
141
|
+
* @memberOf html5
|
142
|
+
* @param {Document} ownerDocument The context document.
|
143
|
+
* @returns {Object} The shived DocumentFragment.
|
144
|
+
*/
|
145
|
+
function createDocumentFragment(ownerDocument, data){
|
146
|
+
if (!ownerDocument) {
|
147
|
+
ownerDocument = document;
|
148
|
+
}
|
149
|
+
if(supportsUnknownElements){
|
150
|
+
return ownerDocument.createDocumentFragment();
|
151
|
+
}
|
152
|
+
data = data || getExpandoData(ownerDocument);
|
153
|
+
var clone = data.frag.cloneNode(),
|
154
|
+
i = 0,
|
155
|
+
elems = getElements(),
|
156
|
+
l = elems.length;
|
157
|
+
for(;i<l;i++){
|
158
|
+
clone.createElement(elems[i]);
|
159
|
+
}
|
160
|
+
return clone;
|
161
|
+
}
|
162
|
+
|
163
|
+
/**
|
164
|
+
* Shivs the `createElement` and `createDocumentFragment` methods of the document.
|
165
|
+
* @private
|
166
|
+
* @param {Document|DocumentFragment} ownerDocument The document.
|
167
|
+
* @param {Object} data of the document.
|
168
|
+
*/
|
169
|
+
function shivMethods(ownerDocument, data) {
|
170
|
+
if (!data.cache) {
|
171
|
+
data.cache = {};
|
172
|
+
data.createElem = ownerDocument.createElement;
|
173
|
+
data.createFrag = ownerDocument.createDocumentFragment;
|
174
|
+
data.frag = data.createFrag();
|
175
|
+
}
|
176
|
+
|
177
|
+
|
178
|
+
ownerDocument.createElement = function(nodeName) {
|
179
|
+
//abort shiv
|
180
|
+
if (!html5.shivMethods) {
|
181
|
+
return data.createElem(nodeName);
|
182
|
+
}
|
183
|
+
return createElement(nodeName, ownerDocument, data);
|
184
|
+
};
|
185
|
+
|
186
|
+
ownerDocument.createDocumentFragment = Function('h,f', 'return function(){' +
|
187
|
+
'var n=f.cloneNode(),c=n.createElement;' +
|
188
|
+
'h.shivMethods&&(' +
|
189
|
+
// unroll the `createElement` calls
|
190
|
+
getElements().join().replace(/[\w\-]+/g, function(nodeName) {
|
191
|
+
data.createElem(nodeName);
|
192
|
+
data.frag.createElement(nodeName);
|
193
|
+
return 'c("' + nodeName + '")';
|
194
|
+
}) +
|
195
|
+
');return n}'
|
196
|
+
)(html5, data.frag);
|
197
|
+
}
|
198
|
+
|
199
|
+
/*--------------------------------------------------------------------------*/
|
200
|
+
|
201
|
+
/**
|
202
|
+
* Shivs the given document.
|
203
|
+
* @memberOf html5
|
204
|
+
* @param {Document} ownerDocument The document to shiv.
|
205
|
+
* @returns {Document} The shived document.
|
206
|
+
*/
|
207
|
+
function shivDocument(ownerDocument) {
|
208
|
+
if (!ownerDocument) {
|
209
|
+
ownerDocument = document;
|
210
|
+
}
|
211
|
+
var data = getExpandoData(ownerDocument);
|
212
|
+
|
213
|
+
if (html5.shivCSS && !supportsHtml5Styles && !data.hasCSS) {
|
214
|
+
data.hasCSS = !!addStyleSheet(ownerDocument,
|
215
|
+
// corrects block display not defined in IE6/7/8/9
|
216
|
+
'article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}' +
|
217
|
+
// adds styling not present in IE6/7/8/9
|
218
|
+
'mark{background:#FF0;color:#000}' +
|
219
|
+
// hides non-rendered elements
|
220
|
+
'template{display:none}'
|
221
|
+
);
|
222
|
+
}
|
223
|
+
if (!supportsUnknownElements) {
|
224
|
+
shivMethods(ownerDocument, data);
|
225
|
+
}
|
226
|
+
return ownerDocument;
|
227
|
+
}
|
228
|
+
|
229
|
+
/*--------------------------------------------------------------------------*/
|
230
|
+
|
231
|
+
/**
|
232
|
+
* The `html5` object is exposed so that more elements can be shived and
|
233
|
+
* existing shiving can be detected on iframes.
|
234
|
+
* @type Object
|
235
|
+
* @example
|
236
|
+
*
|
237
|
+
* // options can be changed before the script is included
|
238
|
+
* html5 = { 'elements': 'mark section', 'shivCSS': false, 'shivMethods': false };
|
239
|
+
*/
|
240
|
+
var html5 = {
|
241
|
+
|
242
|
+
/**
|
243
|
+
* An array or space separated string of node names of the elements to shiv.
|
244
|
+
* @memberOf html5
|
245
|
+
* @type Array|String
|
246
|
+
*/
|
247
|
+
'elements': options.elements || 'abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video',
|
248
|
+
|
249
|
+
/**
|
250
|
+
* current version of html5shiv
|
251
|
+
*/
|
252
|
+
'version': version,
|
253
|
+
|
254
|
+
/**
|
255
|
+
* A flag to indicate that the HTML5 style sheet should be inserted.
|
256
|
+
* @memberOf html5
|
257
|
+
* @type Boolean
|
258
|
+
*/
|
259
|
+
'shivCSS': (options.shivCSS !== false),
|
260
|
+
|
261
|
+
/**
|
262
|
+
* Is equal to true if a browser supports creating unknown/HTML5 elements
|
263
|
+
* @memberOf html5
|
264
|
+
* @type boolean
|
265
|
+
*/
|
266
|
+
'supportsUnknownElements': supportsUnknownElements,
|
267
|
+
|
268
|
+
/**
|
269
|
+
* A flag to indicate that the document's `createElement` and `createDocumentFragment`
|
270
|
+
* methods should be overwritten.
|
271
|
+
* @memberOf html5
|
272
|
+
* @type Boolean
|
273
|
+
*/
|
274
|
+
'shivMethods': (options.shivMethods !== false),
|
275
|
+
|
276
|
+
/**
|
277
|
+
* A string to describe the type of `html5` object ("default" or "default print").
|
278
|
+
* @memberOf html5
|
279
|
+
* @type String
|
280
|
+
*/
|
281
|
+
'type': 'default',
|
282
|
+
|
283
|
+
// shivs the document according to the specified `html5` object options
|
284
|
+
'shivDocument': shivDocument,
|
285
|
+
|
286
|
+
//creates a shived element
|
287
|
+
createElement: createElement,
|
288
|
+
|
289
|
+
//creates a shived documentFragment
|
290
|
+
createDocumentFragment: createDocumentFragment
|
291
|
+
};
|
292
|
+
|
293
|
+
/*--------------------------------------------------------------------------*/
|
294
|
+
|
295
|
+
// expose html5
|
296
|
+
window.html5 = html5;
|
297
|
+
|
298
|
+
// shiv the document
|
299
|
+
shivDocument(document);
|
300
|
+
|
301
|
+
}(this, document));
|