This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| p { | |
| text-align: justify; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| app.directive('fileModel', ['$parse', function ($parse) { | |
| return { | |
| restrict: 'A', | |
| link: function(scope, element, attrs) { | |
| var model = $parse(attrs.fileModel); | |
| var modelSetter = model.assign; | |
| element.bind('change', function(){ | |
| scope.$apply(function(){ | |
| modelSetter(scope, element[0].files[0]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <input type="file" file-model="file"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var app = angular.module('my-app', [..,'lr.upload']); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| font-face { | |
| font-family: 'ralewayregular'; | |
| src: url('raleway-regular-webfont.eot'); | |
| src: url('raleway-regular-webfont.eot?#iefix') format('embedded-opentype'), | |
| url('raleway-regular-webfont.woff2') format('woff2'), | |
| url('raleway-regular-webfont.woff') format('woff'), | |
| url('raleway-regular-webfont.ttf') format('truetype'), | |
| url('raleway-regular-webfont.svg#ralewayregular') format('svg'); | |
| font-weight: normal; | |
| font-style: normal; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ANTES DE COMEÇAR É IMPORTANTE CONSEGUIR TODOS OS ATRIBUTOS NECESSÁRIOS | |
| # PARA REALZIAR A BUSCA POR VAGAS | |
| # ======================================================================== | |
| # único parâmetro para realizar busca é o Id do usuário. | |
| $id_usuario = 5 | |
| # Convertendo os periodos e subtraindo eles. | |
| # >> CAST(periodo_final as DECIMAL(9,2)) - CAST(periodo_inicial as DECIMAL(9,2)) | |
| # Logo após isso somar todos os períodos de todas as experiências cadastradas | |
| # usando como query o Id do usuário. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| usuarios.id, | |
| usuarios.nome, | |
| usuarios.email, | |
| usuarios.cep, | |
| usuarios.estado, | |
| usuarios.cidade, | |
| usuarios.endereco, | |
| usuarios.nascimento, | |
| GROUP_CONCAT(telefones.numero SEPARATOR ', ') AS telefones, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| usuarios.id, | |
| usuarios.nome, | |
| usuarios.email, | |
| usuarios.nascimento, | |
| GROUP_CONCAT(telefones.numero SEPARATOR ', ') AS telefones, | |
| usuarios.cep, | |
| usuarios.estado, | |
| usuarios.cidade, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $element.on('click input paste keyup', function() { | |
| timeout = $timeout(function() { | |
| // Manual debounce to prevent multiple execution | |
| $timeout.cancel(timeout); | |
| // fix bug | |
| var text = parseViewValue($element.val()); | |
| $element[0].selectionStart = text.length; | |
| $scope.$apply(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| android.support.v4 21.0.1 "Android Support v4" | |
| com.ionic.keyboard 1.0.4 "Keyboard" | |
| cordova-plugin-device 1.0.2-dev "Device" | |
| de.appplant.cordova.common.registerusernotificationsettings 1.0.1 "RegisterUserNotificationSettings" | |
| de.appplant.cordova.plugin.local-notification 0.8.2dev "LocalNotification" | |
| org.apache.cordova.inappbrowser 0.6.0 "InAppBrowser" |