|
@@ -12,9 +12,11 @@
|
|
|
});
|
|
|
|
|
|
$('li').each(function(i,e){
|
|
|
- var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
|
|
|
- $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
|
|
|
- $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
|
|
|
+ if(!$(this).hasClass('noCheckbox')){
|
|
|
+ var uuid = 'li_' + Math.floor(Math.random() * Math.floor(1000000)).toString() + '_' + i.toString();
|
|
|
+ $(this).contents().wrap('<span id="'+ uuid +'"><label for="cb_'+ uuid +'"></label></span>');
|
|
|
+ $(this).prepend('<input type="checkbox" class="completeBox" id="cb_' + uuid +'" rel="'+ uuid +'" />')
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
$('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
|
|
@@ -23,7 +25,7 @@
|
|
|
theElement.empty();
|
|
|
for(l=0;l<lines.length;l++){
|
|
|
if($.trim(lines[l]) != '' && $.trim(lines[l]).substr(0,1) != '#' && $.trim(lines[l]).indexOf(' #') == -1 && lines[l].substr(0, 4).toUpperCase() != 'REM '){
|
|
|
- theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ lines[l].replace(/"/g, '"') +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
|
|
|
+ theElement.append('<input type="image" src="images/clipboard.png" value="" class="copy-text" rel="copy_'+ i +'_'+ l +'" data-clipboard-text="'+ $.trim(lines[l].replace(/"/g, '"')) +'" /><span id="copy_'+ i +'_'+ l +'">'+ lines[l] +'</span>');
|
|
|
} else {
|
|
|
theElement.append(lines[l]);
|
|
|
}
|
|
@@ -33,9 +35,15 @@
|
|
|
$(document).on('click','input.copy-text',function(){
|
|
|
theButton = $(this);
|
|
|
$('input.copy-text').attr('src','images/clipboard.png');
|
|
|
- $('span.copy-animation').removeClass('copy-animation');
|
|
|
+ $('span.copy-animation,span.copy-animation-ps').removeClass('copy-animation copy-animation-ps');
|
|
|
try {
|
|
|
- $('#'+ theButton.attr('rel')).addClass('copy-animation');
|
|
|
+ if($('#'+ theButton.attr('rel')).parent('div').hasClass('PS')){
|
|
|
+ $('#'+ theButton.attr('rel')).addClass('copy-animation-ps');
|
|
|
+ } else if($('#'+ theButton.attr('rel')).parent('div').hasClass('CMD')){
|
|
|
+ $('#'+ theButton.attr('rel')).addClass('copy-animation-cmd');
|
|
|
+ } else {
|
|
|
+ $('#'+ theButton.attr('rel')).addClass('copy-animation');
|
|
|
+ }
|
|
|
navigator.clipboard.writeText(theButton.data('clipboard-text').replace(/<[^>]*>?/gm, ''));
|
|
|
theButton.attr('src','images/clipboard_active.png');
|
|
|
} catch(err) {
|
|
@@ -57,8 +65,8 @@
|
|
|
});
|
|
|
|
|
|
if(window.self !== window.top){
|
|
|
- window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
|
|
|
- }
|
|
|
+ window.parent.$('iframe.stepsFrame').height((this['scrollingElement']['scrollHeight']+20) +'px');
|
|
|
+ }
|
|
|
});
|
|
|
</script>
|
|
|
<link href="css/steps.css" rel="stylesheet" type="text/css" />
|
|
@@ -118,13 +126,13 @@
|
|
|
<li>Open a text editor</li>
|
|
|
<li>Create a PHP file with the following code<br />
|
|
|
<textarea><?php
|
|
|
- $to = 'i12bretro@i12bretro.local';
|
|
|
- $subject = 'HTML E-Mail from PHP';
|
|
|
- $body = '<cke:html><cke:head><cke:title>HTML E-Mail</cke:title></cke:head><cke:body><h3>Check out my other tutorials at <a data-cke-saved-href="https://youtube.com/channel/UCNmLR_9Ec8NydshHNPnC5Jw" href="https://youtube.com/channel/UCNmLR_9Ec8NydshHNPnC5Jw">https://youtube.com/channel/UCNmLR_9Ec8NydshHNPnC5Jw</a></h3></cke:body></cke:html>';
|
|
|
- $headers[] = 'Content-type: text/html; charset=iso-8859-1';
|
|
|
- $headers[] = 'From: PHP Webserver <system@i12bretro.local>';
|
|
|
+$to = 'i12bretro@i12bretro.local';
|
|
|
+$subject = 'HTML E-Mail from PHP';
|
|
|
+$body = '<html><head><title>HTML E-Mail</title></head><body><h3>Check out my other tutorials at <a href="https://youtube.com/channel/UCNmLR_9Ec8NydshHNPnC5Jw">https://youtube.com/channel/UCNmLR_9Ec8NydshHNPnC5Jw</a></h3></body></html>';
|
|
|
+$headers[] = 'Content-type: text/html; charset=iso-8859-1';
|
|
|
+$headers[] = 'From: PHP Webserver <system@i12bretro.local>';
|
|
|
|
|
|
- mail($to, $subject, $body, implode("\r\n", $headers));
|
|
|
+mail($to, $subject, $body, implode("\r\n", $headers));
|
|
|
?></textarea></li>
|
|
|
</ol>
|
|
|
</div>
|