Sha256: 1e15360c0106d9276d3ed2f3214bb9b7babbf860ddec974c6147961a46dd3e30

Contents?: true

Size: 798 Bytes

Versions: 2

Compression:

Stored size: 798 Bytes

Contents

<!DOCTYPE html>
<html lang="en" ng-app="sample">
  <head>
    <meta charset="utf-8"/>
    <title>Calliper Sample Application</title>
    <script src="/javascripts/angular.js"></script>
    <script src="/javascripts/application.js"></script>
  </head>
  <body>

    <div ng-controller="NotificationListCtrl">
      <h1>Notifications:</h1>

      <button class="toggle-notifications" ng-click="toggleNotifications()">
        Toggle Notifications
      </button>

      <ul ng-if="notifications" class="notification-list">
        <li ng-repeat="notification in notifications" class="notification">
          <span class="notification-id">{{notification.id}}</span>:
          <span class="notification-message">{{notification.message}}</span>
        </li>
      </ul>
    </div>

  </body>
</html>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
calliper-0.0.2 test/sample/views/index.erb
calliper-0.0.1 test/sample/views/index.erb