Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="app">
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body ng-controller="mainCtrl as vm">
      <div ng-repeat="post in vm.posts | limitTo:-15" id="post-{{ ::$index }}" scroll-to-last="post-{{ ::$index }}">
        {{post.uid}} : {{post.text}}
      </div>
    <form>
      <input type="text" placeholder="Start typing..." ng-model="vm.uid"/>
      <input type="textarea" placeholder="Start typing..." ng-model="vm.postText"/>
      <button type="submit" ng-click="vm.addPost(vm.newPost);">add</button>
    </form>
  
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers