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
/* | |
* Added on line 139 in the file wpadverts-mal/assets/js/map-single.js in plugin version 1.1.1 | |
*/ | |
google.maps.event.addDomListener(input, 'keydown', function(e) { | |
if (e.keyCode == 13) { | |
e.preventDefault(); | |
} | |
}); |
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
/* | |
* https://css-tricks.com/snippets/css/truncate-string-with-ellipsis/ | |
* | |
*/ | |
.u-truncate { | |
width: 250px; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; |
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
<!doctype html> | |
<html <?php language_attributes(); ?> class="no-js <?php echo wp_is_mobile() ? 'mobile' : ''; ?>"> | |
<head> | |
<meta charset="<?php bloginfo( 'charset' ); ?>"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<?php wp_head(); ?> | |
</head> | |
<body <?php body_class(); ?>> |
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
*~ | |
wp-content/* | |
!wp-content/themes/ | |
wp-content/themes/* | |
# Change THEMENAME to the current theme name | |
!wp-content/themes/THEMENAME/* | |
wp-content/themes/THEMENAME/.sass-cache/* |
OlderNewer