public/deck.js/introduction/index.html in deckrb-0.4.2 vs public/deck.js/introduction/index.html in deckrb-0.5.0

- old
+ new

@@ -18,10 +18,11 @@ <link rel="stylesheet" href="../extensions/goto/deck.goto.css"> <link rel="stylesheet" href="../extensions/menu/deck.menu.css"> <link rel="stylesheet" href="../extensions/navigation/deck.navigation.css"> <link rel="stylesheet" href="../extensions/status/deck.status.css"> <link rel="stylesheet" href="../extensions/hash/deck.hash.css"> + <link rel="stylesheet" href="../extensions/scale/deck.scale.css"> <!-- Style theme. More available in /themes/style/ or create your own. --> <link rel="stylesheet" href="../themes/style/web-2.0.css"> <!-- Transition theme. More available in /themes/transition/ or create your own. --> @@ -105,10 +106,14 @@ </li> <li class="slide" id="extensions-status"> <strong>deck.status</strong>: Adds a page number indicator. (current/total) </li> + + <li class="slide" id="extensions-scale"> + <strong>deck.scale</strong>: Scales each slide to fit within the deck container using CSS Transforms for those browsers that support them. + </li> </ul> <p class="slide" id="extension-folders">Each extension folder in the download package contains the necessary JavaScript, CSS, and HTML&nbsp;files. For a complete list of extension modules included in deck.js, check out the&nbsp;<a href="http://imakewebthings.github.com/deck.js/docs">documentation</a>.</p> </section> @@ -185,19 +190,20 @@ <!-- deck.hash snippet --> <a href="." title="Permalink to this slide" class="deck-permalink">#</a> <!-- Grab CDN jQuery, with a protocol relative URL; fall back to local if offline --> -<script src="//ajax.aspnetcdn.com/ajax/jQuery/jquery-1.7.min.js"></script> -<script>window.jQuery || document.write('<script src="../jquery-1.7.min.js"><\/script>')</script> +<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> +<script>window.jQuery || document.write('<script src="../jquery-1.7.2.min.js"><\/script>')</script> <!-- Deck Core and extensions --> <script src="../core/deck.core.js"></script> <script src="../extensions/hash/deck.hash.js"></script> <script src="../extensions/menu/deck.menu.js"></script> <script src="../extensions/goto/deck.goto.js"></script> <script src="../extensions/status/deck.status.js"></script> <script src="../extensions/navigation/deck.navigation.js"></script> +<script src="../extensions/scale/deck.scale.js"></script> <!-- Initialize the deck --> <script> $(function() { $.deck('.slide');