Skip to content

Instantly share code, notes, and snippets.

@okevese
Last active April 28, 2019 21:32
Show Gist options
  • Save okevese/5d73d7ed643fdce08e09337df09fb43e to your computer and use it in GitHub Desktop.
Save okevese/5d73d7ed643fdce08e09337df09fb43e to your computer and use it in GitHub Desktop.
(function() {
angular
.module('foodApp')
.controller('calorieCtrl', calorieCtrl);
function calorieCtrl() {
var vm = this;
vm.styleCalorieInput = {
"background-color": "#3cb9c6",
"border-color": "transparent",
"border-radius": "10px"
};
vm.styleError = {
"color": "#f3c4a3"
};
...
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment