This file contains 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
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// choose either `'stable'` for receiving highly polished, | |
// or `'canary'` for less polished but more frequent updates | |
updateChannel: 'stable', |
This file contains 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
/* width */ | |
::-webkit-scrollbar { | |
width: 5px; | |
} | |
/* Track */ | |
::-webkit-scrollbar-track { | |
background: #f1f1f1; | |
} |
This file contains 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
import Ember from 'ember'; | |
import _ from 'lodash'; | |
export default Ember.Component.extend({ | |
ajax: Ember.inject.service(), | |
store: Ember.inject.service(), | |
didInsertElement() { | |
let that = this, | |
modelName = this.get('modelName'); |
This file contains 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
- Acesso | |
- Ajustes e padronização no modulo de acesso. | |
- Sincronização de registros da catraca para o banco de dados para emissão de relatórios. | |
- Implementação de login com usuário VIASOFT, dando ao mesmo novas permissões como a de deletar empregados. | |
- Implementado o cadastro e sincronizações de mestres na catraca. | |
- Ajustes nos filtros do sistema permitindo filtrar por cpf, data de admissão/demissão, id e nome. | |
- Adiciona validação no cadastro de empregado impedindo que o mesmo saia da pagina sem informar pelo menos uma situação/horário. | |
- Implementado sistema de bloqueio das ações quando a catraca ficar offline, mostrando no lugar um botão de reconexão. | |
- Implementado cadastro de situação na tela do empregado. | |
- Adiciona status do empregado na lista, mostrando se está ativo/rescisão/ferias. |
This file contains 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
/* global $ */ | |
/** | |
* - Nome: input-multiselect2 | |
* - Descrição: Componente permite selecionar vários item a partir de um select | |
* - Parâmetros: | |
* - content: Array onde será adicionado os itens selecionados | |
* - endpoint: Onde será buscado os itens para popular o select | |
* - endpointSelecteds: Onde será buscado os itens já adicionados no content | |
* - modelName: Nome do model do ember store |
This file contains 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
navigator.camera.getPicture((data)=> { | |
var byteCharacters = atob(data); | |
var byteNumbers = new Array(byteCharacters.length); | |
for (var i = 0; i < byteCharacters.length; i++) { | |
byteNumbers[i] = byteCharacters.charCodeAt(i); | |
} | |
var byteArray = new Uint8Array(byteNumbers); | |
var blob = new Blob([byteArray], {type: 'image/jpg'}); |
This file contains 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
http://github.hubspot.com/pace/docs/welcome/ |
This file contains 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
sed -i '' 's/ios/material/g' ember-cli-build.js |
This file contains 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
findQuery: function(store, type, query) { | |
var typeModel = '/' + type.toString().split(':')[1]; | |
typeModel = Ember.String.pluralize(typeModel); | |
typeModel = Ember.String.camelize(typeModel); | |
var customEndPoint = query.customEndPoint ? '/' + query.customEndPoint : typeModel; | |
var confirmationsUrl = this.host + customEndPoint; | |
delete query.customEndPoint; | |
return this.ajax(confirmationsUrl, 'GET', { data: query }); |
This file contains 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
https://github.com/ember-animation/liquid-fire | |
.liquid-container | |
position absolute | |
top 0 | |
left 0 | |
width 100% | |
height 100% | |
.liquid-child |
NewerOlder