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
$(function () { | |
//Config datepiker matrializecss () language | |
$('.datepicker').pickadate({ | |
selectMonths: true,//Creates a dropdown to control month | |
selectYears: 15,//Creates a dropdown of 15 years to control year | |
//The title label to use for the month nav buttons | |
labelMonthNext: 'Proximo Mês', | |
labelMonthPrev: 'Mês Anterior', | |
//The title label to use for the dropdown selectors | |
labelMonthSelect: 'Selecionar Mês', |
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
using Google.Apis.AnalyticsReporting.v4; | |
using Google.Apis.Auth.OAuth2; | |
using Google.Apis.Services; | |
using System; | |
using System.IO; | |
using System.Security.Cryptography.X509Certificates; | |
namespace GoogleAnaltyics.V4 | |
{ | |
public class ServiceAccountJson |
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
var diaSemana = [ 'Domingo', 'Segunda-Feira', 'Terca-Feira', 'Quarta-Feira', 'Quinta-Feira', 'Sexta-Feira', 'Sabado' ]; | |
var mesAno = [ 'Janeiro', 'Fevereiro', 'Marco', 'Abril', 'Maio', 'Junho', 'Julho', 'Agosto', 'Setembro', 'Outubro', 'Novembro' , 'Dezembro' ]; | |
var data = new Date(); | |
var hoje = diaSemana[data.getDay()] + ', ' + mesAno[data.getMonth()] + ' de ' + data.getFullYear(); | |
$("#dataPesquisa").attr("value", hoje); | |
$(".datepicker").pickadate({ | |
monthsFull: mesAno, | |
monthsShort: [ 'Jan', 'Fev', 'Mar', 'Abr', 'Mai', 'Jun', 'Jul', 'Ago', 'Set', 'Out', 'Nov', 'Dez' ], | |
weekdaysFull: diaSemana, | |
weekdaysShort: [ 'Dom', 'Seg', 'Ter', 'Qua', 'Qui', 'Sex', 'Sab' ], |