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 08:18:44 +0400
committerconnors <connor.sears@github.com>2014-02-25 08:18:44 +0400
commit648e9ca7dd83b80ba98ed6ba4df0b8417313dae6 (patch)
treea500e176eb5410de6555bdcfb572bfb3241150a1
parent379acada28218a7e75604181afc9be0a04f26bdc (diff)
update a bunch of things
-rw-r--r--dist/ratchet.js12
-rw-r--r--docs/_includes/masthead.html1
-rw-r--r--docs/dist/ratchet.js12
-rw-r--r--js/modals.js2
-rw-r--r--js/popovers.js2
-rw-r--r--js/push.js2
-rw-r--r--js/segmented-controllers.js2
-rw-r--r--js/sliders.js2
-rw-r--r--js/toggles.js2
9 files changed, 19 insertions, 18 deletions
diff --git a/dist/ratchet.js b/dist/ratchet.js
index 4a47a2e..3c37ab6 100644
--- a/dist/ratchet.js
+++ b/dist/ratchet.js
@@ -8,7 +8,7 @@
* =====================================================
*/
/* ----------------------------------
- * MODAL v1.0.0
+ * MODAL v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
@@ -36,7 +36,7 @@
}();
/* ----------------------------------
- * POPOVER v1.0.1
+ * POPOVER v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
@@ -108,7 +108,7 @@
}();
/* ----------------------------------
- * PUSH v1.0.0
+ * PUSH v2.0.0
* Licensed under The MIT License
* inspired by chris's jquery.pjax.js
* http://opensource.org/licenses/MIT
@@ -528,7 +528,7 @@
}();
/* ----------------------------------
- * Segmented controls v1.0.1
+ * Segmented controls v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
@@ -575,7 +575,7 @@
window.addEventListener('click', function (e) { if (getTarget(e.target)) e.preventDefault(); });
}();
/* ----------------------------------
- * SLIDER v1.0.1
+ * SLIDER v2.0.0
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
@@ -692,7 +692,7 @@
}();
/* ----------------------------------
- * TOGGLE v1.0.0
+ * TOGGLE v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
diff --git a/docs/_includes/masthead.html b/docs/_includes/masthead.html
index 123c71a..dab385e 100644
--- a/docs/_includes/masthead.html
+++ b/docs/_includes/masthead.html
@@ -11,6 +11,7 @@
<a class="docs-nav-item" href="/getting-started" data-ignore="push">Getting started</a>
<a class="docs-nav-item" href="/components" data-ignore="push">Components</a>
<a class="docs-nav-item" href="/examples" data-ignore="push">Examples</a>
+ <a class="docs-nav-item" href="https://github.com/twbs/ratchet" data-ignore="push">Github project</a>
</div>
</nav>
</div>
diff --git a/docs/dist/ratchet.js b/docs/dist/ratchet.js
index 4a47a2e..3c37ab6 100644
--- a/docs/dist/ratchet.js
+++ b/docs/dist/ratchet.js
@@ -8,7 +8,7 @@
* =====================================================
*/
/* ----------------------------------
- * MODAL v1.0.0
+ * MODAL v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
@@ -36,7 +36,7 @@
}();
/* ----------------------------------
- * POPOVER v1.0.1
+ * POPOVER v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
@@ -108,7 +108,7 @@
}();
/* ----------------------------------
- * PUSH v1.0.0
+ * PUSH v2.0.0
* Licensed under The MIT License
* inspired by chris's jquery.pjax.js
* http://opensource.org/licenses/MIT
@@ -528,7 +528,7 @@
}();
/* ----------------------------------
- * Segmented controls v1.0.1
+ * Segmented controls v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
@@ -575,7 +575,7 @@
window.addEventListener('click', function (e) { if (getTarget(e.target)) e.preventDefault(); });
}();
/* ----------------------------------
- * SLIDER v1.0.1
+ * SLIDER v2.0.0
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
@@ -692,7 +692,7 @@
}();
/* ----------------------------------
- * TOGGLE v1.0.0
+ * TOGGLE v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
diff --git a/js/modals.js b/js/modals.js
index 2b1b725..f4fbb68 100644
--- a/js/modals.js
+++ b/js/modals.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * MODAL v1.0.0
+ * MODAL v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
diff --git a/js/popovers.js b/js/popovers.js
index b62a483..ff9b306 100644
--- a/js/popovers.js
+++ b/js/popovers.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * POPOVER v1.0.1
+ * POPOVER v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
diff --git a/js/push.js b/js/push.js
index f052f93..413301d 100644
--- a/js/push.js
+++ b/js/push.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * PUSH v1.0.0
+ * PUSH v2.0.0
* Licensed under The MIT License
* inspired by chris's jquery.pjax.js
* http://opensource.org/licenses/MIT
diff --git a/js/segmented-controllers.js b/js/segmented-controllers.js
index f4a3468..359b5d6 100644
--- a/js/segmented-controllers.js
+++ b/js/segmented-controllers.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * Segmented controls v1.0.1
+ * Segmented controls v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */
diff --git a/js/sliders.js b/js/sliders.js
index b87931e..76708ad 100644
--- a/js/sliders.js
+++ b/js/sliders.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * SLIDER v1.0.1
+ * SLIDER v2.0.0
* Licensed under The MIT License
* Adapted from Brad Birdsall's swipe
* http://opensource.org/licenses/MIT
diff --git a/js/toggles.js b/js/toggles.js
index 16f8db4..496d9a6 100644
--- a/js/toggles.js
+++ b/js/toggles.js
@@ -1,5 +1,5 @@
/* ----------------------------------
- * TOGGLE v1.0.0
+ * TOGGLE v2.0.0
* Licensed under The MIT License
* http://opensource.org/licenses/MIT
* ---------------------------------- */