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
<?php | |
function captaintan_wcwl_update_waitlist_success_message_text($text) { | |
return "De tekst die je wilt zien."; | |
} | |
add_filter('wcwl_update_waitlist_success_message_text', 'captaintan_wcwl_update_waitlist_success_message_text'); |
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
Index: src/actionscript/org/flowplayer/controls/config/Config.as | |
=================================================================== | |
--- src/actionscript/org/flowplayer/controls/config/Config.as (revision 1673) | |
+++ src/actionscript/org/flowplayer/controls/config/Config.as (working copy) | |
@@ -177,6 +177,8 @@ | |
config.setHeightRatio(_style['timeBgHeightRatio']); | |
config.setSeparator(_style['timeSeparator'] || "/"); | |
config.setTimeColor(_style['timeColor']); | |
+ config.setShowDuration(_style['showDuration'] === undefined ? true : _style['showDuration']); | |
+ config.setShowRemainingTime(_style['showRemainingTime'] || false); |
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="kino"> | |
<div class="kino-overlay"></div> | |
<div class="kino-window"> | |
<div class="kino-header"> | |
<h1 class="kino-title"></h1> | |
<div class="kino-top-controls"> | |
<a href="#" class="kino-mute">GELUID</a> | |
<a href="#" class="kino-close">X</a> | |
</div> | |
</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
/* | |
Plaats !important achter regels die veranderd worden: | |
display: none; ===> display: none !important; | |
*/ | |
.kino .kino-overlay { | |
display: none; | |
position: fixed; | |
top: 0; | |
left: 0; | |
width: 100%; |
NewerOlder