Site da Oficina Itapeti

main.js 833B

    'use strict'; /** * @ngdoc function * @name siteOficinaItapetiApp.controller:MainCtrl * @description * # MainCtrl * Controller of the siteOficinaItapetiApp */ angular.module('siteOficinaItapetiApp') .controller('MainCtrl', [ '$window', '$scope', function ($window, $scope) { $window.scrollTo(0, 0); $scope.laser_cut = { value: 1, options: { floor: 0, ceil: 20, step: 1, minLimit: 1, maxLimit: 20 }, cost: [120, 120, 120, 110, 110, 100, 100, 100, 100, 90, 90, 90, 90, 90, 80, 80, 80, 80, 80, 70], value_project: 0.5, options2: { floor: 0, ceil: 8, step: 0.5, minLimit: 0, maxLimit: 8, precision: 1 }, cost2: 50 } }]);