phadej/menrva

View on GitHub
examples/suggestions/index.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html5>
<html>
<head>
  <script type="text/javascript" src="../../dist/menrva.standalone.js"></script>
  <script type="text/javascript" src="../../lib/jquery.js"></script>
  <script type="text/javascript" src="suggestions.js"></script>
  <link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
  <div class="container">
      <div class="header">
           <h2>Who to follow</h2><a href="#" class="refresh">Refresh</a>
      </div>
      <ul class="suggestions">
          <li class="suggestion1">
              <img />
              <a href="#" target="_blank" class="username">this will not be displayed</a>
              <a href="#" class="close close1">x</a>
          </li>
          <li class="suggestion2">
              <img />
              <a href="#" target="_blank" class="username">neither this</a>
              <a href="#" class="close close2">x</a>
          </li>
          <li class="suggestion3">
              <img />
              <a href="#" target="_blank" class="username">nor this</a>
              <a href="#" class="close close3">x</a>
          </li>
      </ul>
  </div>

</body>
</html>