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
TextBox: MyGistTemplate | |
Top:0 | |
Left:0 | |
Width:100 | |
Height:100 |
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
initialvisfile: 'd114a488ddca2dabc98413ada203ae53/raw/40d61bf60d99b5546db56c11d5b2251179dca9d1/initial.vis |
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
<link rel="import" href="../core-ajax/core-ajax.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
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
-- DDL | |
-- company | |
CREATE TABLE company ( | |
id SERIAL PRIMARY KEY NOT NULL, | |
name VARCHAR(64) NOT NULL, | |
date_certif_start DATE NOT NULL, | |
date_certif_end DATE NOT NULL, | |
status SMALLINT NOT NULL, | |
about VARCHAR NULL | |
); |
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
if ( $(this ).hasClass("grayscale") ){ | |
console.log($(this).hasClass("grayscale") ); | |
$(this).removeClass("grayscale"); | |
} | |