dbispo (owner)

Revisions

gist: 127358 Download_button fork
public
Public Clone URL: git://gist.github.com/127358.git
Embed All Files: show embed
x #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CmdUtils.CreateCommand({
  name: "cardapio-ceset",
  
  author: { name: "Diogo Moreira Bispo", email: "diogobispo@gmail.com"},
  
  preview: function( pblock ) {
    pblock.innerHTML = "Ver o cardápio do bandejão";
    
    jQuery.get("http://www.pfl.unicamp.br/cardapio.php",
      function(comida1){
        comida1 = comida1.replace("<%@LANGUAGE=\"VBSCRIPT\" CODEPAGE=\"1252\"%>", "");
        pblock.innerHTML = comida1
      }
    );
  
  }
  
})