Skip to content

Instantly share code, notes, and snippets.

View gasgas83's full-sized avatar

Gastón de la Llana gasgas83

View GitHub Profile
-webkit-filter: grayscale(1);
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
filter: url(#greyscale);
filter: gray;
@gasgas83
gasgas83 / pymchild.js
Last active January 31, 2018 18:52
Pym para Apps
<!-- PYM -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/pym/1.2.0/pym.v1.min.js" ></script>
<script>
var parentPageUrl = document.URL,
pymChild = new pym.Child();
pymChild.sendMessage('pymEspecialesLoaded', 'ready');
pymChild.onMessage('setShareUrl', function(Url) {
var a = document.createElement('a');
a.href = Url;