Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app="app">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.js"></script>
  
  <title>JS Bin</title>
</head>
<body ng-controller="main">
  
    <div id="progress-l" ng-style="{ 'width': progressLOptions.width, 'height': progressLOptions.height, 'background': progressLOptions.color }" style="width: 200px; height: 20px;">
</div>
  
</body>
</html>
 
var app = angular.module('app', []);
app.controller('main', function($scope) {
  
  
  $scope.progressLOptions = {
    color: '#000',
    width: '200px',
    height: '20px',
  };
  
});
Output

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

Dismiss x
public
Bin info
krishcdbrypro
0viewers