This file contains hidden or 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
| Skullcandy Ti Headphones | |
| http://store.apple.com/us/product/TW225VC/A?fnode=MTY1NDA0Ng&mco=MTU4ODIyNDc | |
| Apple Magic Mouse | |
| http://store.apple.com/us/product/MB829?mco=MTM3NDk2NjQ | |
| iPod Nano 16Gb Purple | |
| http://store.apple.com/us/browse/home/shop_ipod/family/ipod_nano?mco=MTAyNTQzMjM | |
This file contains hidden or 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
| <div class="content" style="overflow: hidden; display: block;"> | |
| <h3>Sua sugestão é muito importante</h3> | |
| <form action="" method="post"> | |
| <div id="textfield_insert"> | |
| <textarea rows="15" name="feedback_message" id="feedback_message" cols="40" class="field_desc"/> | |
| </div> | |
| <div class="active_buttons default" id="align_btns"> | |
| <input type="image" id="btn_enviar" name="commit" src="/images/default/btn_enviar.jpg" value="Enviar"/> | |
| </div> | |
| </form> |
This file contains hidden or 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
| <div class="confirmar_exclusao"> | |
| <h3>Voce tem certeza que deseja excluir?</h3> | |
| <p><a href="#">‹ Nao</a> <a class="delete" href="#">› Sim</a></p> | |
| </div> |
This file contains hidden or 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
| /* new clearfix */ | |
| .clearfix:after { | |
| visibility: hidden; | |
| display: block; | |
| font-size: 0; | |
| content: " "; | |
| clear: both; | |
| height: 0; | |
| } | |
| * html .clearfix { zoom: 1; } /* IE6 */ |
This file contains hidden or 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
| brother-in-law >>>>> cunhado | |
| sister-in-law >>>>> cunhada | |
| mother-in-law >>>>> sogra | |
| father-in-law >>>>> sogro | |
| son-in-law >>>>> genro | |
| daughter-in-law >>>>> nora, não enteada, como disse a Mari | |
| quer mais? então aí vai: | |
| god father >>>>> padrinho | |
| god mother >>>>> madrinha |
This file contains hidden or 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 difference = (new Date("dd/mm/yyyy") - new Date()) / 1000; | |
| $("#countdown").html(Math.floor(( difference < 0 ? 0 : difference ) / (60 * 60 * 24)) + ' Dias'); |
This file contains hidden or 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
| !!! Strict | |
| %html{ "xml:lang" => "pt-br", :lang => "pt-br", :xmlns => "http://www.w3.org/1999/xhtml" } | |
| / | |
| Add in production to cache offline: manifest="production.manifest" | |
| %head | |
| %meta{ :charset => "UTF-8" } | |
| %title | |
| Coop | |
| %style{ :media => "screen", :type => "text/css" } | |
This file contains hidden or 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
| //http://css-tricks.com/random-ad-positions/ | |
| //Random Ad Positions | |
| (function($){ | |
| $.fn.shuffle = function() { | |
| var allElems = this.get(), | |
| getRandom = function(max) { | |
| return Math.floor(Math.random() * max); | |
| }, |
This file contains hidden or 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
| jQuery(function($){ | |
| $(".ngg-galleryoverview .ngg-gallery-thumbnail img").each(function(i){ | |
| var link = $('<a href="#" title="Baixar imagem em alta resolução" class="highResolution">Alta Resolução</a>'); | |
| var img = $(this); | |
| var url = img.attr("src"); | |
| link.attr("href","http://juarezpaf.com/work/rpires/planbr/wp-content/themes/planbr/includes/download.php?file="+url); | |
| var parent = img.closest('.ngg-gallery-thumbnail'); | |
| parent.append(link); | |
| }); | |
| }); |
This file contains hidden or 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
| jQuery(document).ready(function() { | |
| try { | |
| jQuery('div.wpcf7 > form').ajaxForm({ | |
| beforeSubmit: wpcf7BeforeSubmit, | |
| dataType: 'json', | |
| success: wpcf7ProcessJson | |
| }); | |
| } catch (e) { | |
| } |