UNPKG

backbone.cycle

Version:

Navigating and selecting Backbone Models and Collections.

49 lines (39 loc) 1.73 kB
<!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Backbone.Cycle: Demo and Playground</title> <!-- ATTN Foundation loaded without JS - stay clear of JS-driven widgets, or add the JS setup --> <link rel="stylesheet" href="bower_demo_components/foundation/css/normalize.css"> <link rel="stylesheet" href="bower_demo_components/foundation/css/foundation.css"> <link rel="stylesheet" href="common.css"> <link rel="stylesheet" href="demo.css"> </head> <body> <!-- check that 'bower install' has been run in the demo dir if bower.json isn't empty --> <script src="bower-check.js"></script> <!-- body content here... --> <section id="header"> <h1 class="row">Backbone.Cycle Demos</h1> </section> <section> <div class="row"> <ul> <li><a href="amd/">AMD demo and test, example app</a></li> <li><a href="memtest/">Memory leak test</a></li> </ul> </div> </section> <!-- libraries --><!-- edit and replace with your project libraries as needed --> <script src="bower_demo_components/jquery/dist/jquery.js"></script> <script src="../bower_components/underscore/underscore.js"></script> <script src="../bower_components/backbone/backbone.js"></script> <script src="../bower_components/backbone.select/dist/backbone.select.js"></script> <!-- include project source files here... --> <script src="../src/backbone.cycle.js"></script> <!-- demo js here... --> <script src="demo.js"></script> </body> </html>