Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/ratchet.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorconnors <connor.sears@github.com>2014-02-25 05:52:25 +0400
committerconnors <connor.sears@github.com>2014-02-25 05:52:25 +0400
commit0e2360c0e8452bf5bd40c62cacea7ad9ebe644f0 (patch)
tree77f893940c72b9095aee55c1620511d139332012
parentece56c5771854ec4a46630d04b1c33c11d060e0f (diff)
updating some links in the head
-rw-r--r--dist/ratchet.css1
-rw-r--r--docs/_includes/header.html4
-rw-r--r--docs/dist/ratchet.css1
-rw-r--r--sass/base.scss3
4 files changed, 5 insertions, 4 deletions
diff --git a/dist/ratchet.css b/dist/ratchet.css
index f93d001..6c19afa 100644
--- a/dist/ratchet.css
+++ b/dist/ratchet.css
@@ -269,6 +269,7 @@ a:active {
.content > * {
-webkit-transform: translateZ(0);
+ -ms-transform: translateZ(0);
transform: translateZ(0);
}
diff --git a/docs/_includes/header.html b/docs/_includes/header.html
index 3564436..dd3885f 100644
--- a/docs/_includes/header.html
+++ b/docs/_includes/header.html
@@ -3,7 +3,7 @@
<meta name="description" content="{{ site.name }}: {{ site.description }}">
<meta name="author" content="{{ site.authors }}">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, minimal-ui">
-<link rel="shortcut icon" href="{{ page.base_url }}favicon.ico">
+<link rel="shortcut icon" href="../favicon.ico">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
@@ -12,7 +12,7 @@
<link rel="stylesheet" href="../assets/css/pygments.css">
<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
-<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ page.base_url }}docs-assets/img/apple-touch-icon-114x114.png">
+<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/img/apple-touch-icon-114x114.png">
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script src="../dist/ratchet.js"></script>
diff --git a/docs/dist/ratchet.css b/docs/dist/ratchet.css
index f93d001..6c19afa 100644
--- a/docs/dist/ratchet.css
+++ b/docs/dist/ratchet.css
@@ -269,6 +269,7 @@ a:active {
.content > * {
-webkit-transform: translateZ(0);
+ -ms-transform: translateZ(0);
transform: translateZ(0);
}
diff --git a/sass/base.scss b/sass/base.scss
index f8eebaa..e030913 100644
--- a/sass/base.scss
+++ b/sass/base.scss
@@ -49,8 +49,7 @@ a {
// Hack to force all relatively and absolutely positioned elements still render while scrolling
// Note: This is a bug for "-webkit-overflow-scrolling: touch"
.content > * {
- -webkit-transform: translateZ(0);
- transform: translateZ(0);
+ @include transform(translateZ(0));
}
// Pad top/bottom of content so it doesn't hide behind bars.