Skip to content

Commit

Permalink
HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
edersoares committed Jul 1, 2024
1 parent f712a25 commit 964dc5a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ieducar/intranet/scripts/mensagens.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jQuery.get("http://administrativo.portabilis.com.br/api/v1/messages?product=2", function(response) {
jQuery.get("https://administrativo.portabilis.com.br/api/v1/messages?product=2", function(response) {
for (var i = response.length - 1; i >= 0; i--) {
var cabecalho = '<div class="teste '+i+'" style="min-height: 0px; padding: 5px 10px; background-color:'+response[i].color+';">';

Expand Down
2 changes: 1 addition & 1 deletion ieducar/intranet/scripts/novo.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ function subgoogle()
formulario = document.getElementById("formg");
caminho = "q="+encodeURI(formulario.w.value) + " site:itajai.sc.gov.br"
formulario.w.value = "";
caminho = "http://www.google.com/search?hl=en&"+caminho;
caminho = "https://www.google.com/search?hl=en&"+caminho;
janelaa = window.open(caminho, "janelaa", "");
janelaa.focus();
}
Expand Down
4 changes: 2 additions & 2 deletions ieducar/lib/Utils/gmaps.js
Original file line number Diff line number Diff line change
Expand Up @@ -1578,7 +1578,7 @@ GMaps.prototype.toImage = function(options) {
GMaps.staticMapURL = function(options){
var parameters = [],
data,
static_root = 'http://maps.googleapis.com/maps/api/staticmap';
static_root = 'https://maps.googleapis.com/maps/api/staticmap';

if (options.url) {
static_root = options.url;
Expand Down Expand Up @@ -2082,4 +2082,4 @@ if (!Array.prototype.indexOf) {
}

return GMaps;
}));
}));

0 comments on commit 964dc5a

Please sign in to comment.