Browse Source

Minor derps

pull/214/head
connors 11 years ago
parent
commit
09f1704f9c
  1. 10
      examples/components/classic/index.html
  2. 4
      examples/components/default/index.html

10
examples/components/classic/index.html

@ -9,6 +9,14 @@
<link rel="stylesheet" href="../../../dist/ratchet.css">
<link rel="stylesheet" href="../../../dist/theme-classic.css">
<script src="../../../dist/ratchet.js"></script>
<script src="../../../docs/js/fingerblast.js"></script>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
$(function() {
$(window).on('load', function () { new FingerBlast('.body'); });
});
</script>
<style>
[class*="bar"] {
@ -24,7 +32,7 @@
</head>
<!-- ontouchstart property makes :active/:hover behaviors work on everything -->
<body ontouchstart="">
<body class="body" ontouchstart="">
<div class="content">

4
examples/components/default/index.html

@ -13,7 +13,7 @@
<script>
$(function() {
$(window).on('load', function () { new FingerBlast('.content'); });
$(window).on('load', function () { new FingerBlast('.body'); });
});
</script>
@ -32,7 +32,7 @@
</head>
<!-- ontouchstart property makes :active/:hover behaviors work on everything -->
<body ontouchstart="">
<body class="body" ontouchstart="">
<!-- POPOVER ============================================================ -->
<div id="myPopover" class="popover">

Loading…
Cancel
Save