Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[Queue for rendering 4 at a time]">
<script src="https://cdnjs.cloudflare.com/ajax/libs/q.js/1.0.1/q.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/4.1.0/rx.all.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>  
  <style>
    body {
      background: #f5f5f5;
    }
    .panel-container-m {
      padding-top: 50px;
      display: flex; 
      flex-direction: column;
      justify-content: space-between;
    }
    .panel-container-m > .panel {
      margin-bottom: 10px;
      padding-top: 15px;
      width: 100%;
      min-height: 100px;
      background-color: #fdfdfd; 
      text-align: center;
    }
  </style>
</head>
<body>
  <div>
  <input type="button" value="Produce Event" id="produce-event" />
  </div>
  <div class="panel-container-m">
    Pending
    <div id="pending" class="panel">
    </div>
  </div>
  <div class="panel-container-m">
    In Progress
    <div id="in-progress" class="panel">
    </div>
  </div>
  <div class="panel-container-m">
    Completed
    <div id="done" class="panel">
    </div>
  </div>
  
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers