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\:\/\/t\.co\//.test(document.referrer); |
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
| $('form :input').each(function(index, elem) { | |
| var eId = $(elem).attr('id'); | |
| var label = null; | |
| if (eId && (label = $(elem).parents('form').find('label[for='+eId+']')).length === 1) { | |
| $(elem).attr('placeholder', $(label).html()); |
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
| <html> | |
| <body> | |
| <!-- the {{variable}} would not need to be translated, but the p tag string would need to be. --> | |
| <script id="template"> | |
| <h1>{{variable}}</h1> | |
| <p>This content would need to be translated.</p> | |
| </script> | |
| </body> | |
| </html> |
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
| lacalize: { | |
| germany: { | |
| options: { | |
| exclude_files: ['website/usa/pages/**/*.html'], | |
| exclude_yfm: 'germany' | |
| } | |
| source: 'website/usa', | |
| dest: 'website/germany' | |
| }, | |
| france: { |
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
| $(".companies").css({"left":"0px", "position":"relative", "top":"0px"}); | |
| $(".companies").detach().insertBefore(".reasons"); |
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
| $("#second-reason").css({"left":"0px", "position":"relative", "top":"0px"}); | |
| $("#second-reason").detach().insertBefore("#first-reason"); |
OlderNewer