Skip to content

Instantly share code, notes, and snippets.

@janecakemaster
Last active August 29, 2015 13:56
Show Gist options
  • Save janecakemaster/9031130 to your computer and use it in GitHub Desktop.
Save janecakemaster/9031130 to your computer and use it in GitHub Desktop.
//controllers.js
'use strict';
angular.module('exquisitehuesApp')
.controller('MainCtrl', function($scope) {
$scope.cool = 'cool';
})
.controller('LineCtrl', ['$scope', 'LineService',
function($scope, service) {
service.$bind($scope, 'lastLine');
}
]);
//line.html
<p>
> <span id="last-line" ng-bind="lastLine"></span>
</p>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment