Sha256: de63548548d2cfae2f154d69e7becceb53c98c3076197deda4da371e1e2dc5d3

Contents?: true

Size: 1.39 KB

Versions: 7

Compression:

Stored size: 1.39 KB

Contents

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
   "http://www.w3.org/TR/html4/strict.dtd">

<html lang="en">
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<title>Twitter</title>
  <!-- 
	<script src="http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js" type="text/javascript"></script>
	 -->
	<script src="javascripts/jquery.js" type="text/javascript" charset="utf-8"></script>
	<script src="javascripts/jquery.chain.js" type="text/javascript" charset="utf-8"></script>
  <script src="javascripts/jquery.bowline.js" type="text/javascript" charset="utf-8"></script>
  <script src="../script/init" type="text/ruby" charset="utf-8"></script>
  <script src="javascripts/application.js" type="text/javascript" charset="utf-8"></script>
  <link rel="stylesheet" href="stylesheets/application.css" type="text/css" charset="utf-8">
  <script type="text/javascript" charset="utf-8">
    jQuery(function($){
      var tweets = $('#tweets').bowline('tweets');
      tweets.invoke('index');

      $('#updateSubmit').click(function(){
        tweets.invoke('update', $('#updateText').val());
        return false;
      })
    });
  </script>
</head>
  <body>
    <div id="tweets">
      <div class="item">
        <span class="text"></span>
      </div>
    </div>

    <input type="text" id="updateText">
    <input type="submit" value="Update &rarr;" id="updateSubmit">
</body>
</html>

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
maccman-bowline-0.1.10 examples/twitter.html
maccman-bowline-0.1.6 examples/twitter.html
maccman-bowline-0.1.7 examples/twitter.html
maccman-bowline-0.1.8 examples/twitter.html
maccman-bowline-0.3.0 examples/twitter.html
maccman-bowline-0.3.1 examples/twitter.html
bowline-0.1.6 examples/twitter.html