|
@@ -12,9 +12,11 @@
|
|
});
|
|
});
|
|
|
|
|
|
$('li').each(function(i,e){
|
|
$('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){
|
|
$('code,div.codeBlock,textarea.codeBlock').each(function(i,e){
|
|
@@ -106,7 +108,7 @@
|
|
<li>Click Choose</li>
|
|
<li>Click Choose</li>
|
|
<li>Click OK</li>
|
|
<li>Click OK</li>
|
|
<li>Right Click the Start Button > Command Prompt (Admin) > Paste in the following commands
|
|
<li>Right Click the Start Button > Command Prompt (Admin) > Paste in the following commands
|
|
- <div class="codeBlock">cd "%programfiles%\Oracle\VirtualBox\"<br />
|
|
|
|
|
|
+ <div class="codeBlock masked">cd "%programfiles%\Oracle\VirtualBox\"<br />
|
|
VBoxManage.exe modifyvm "Mac OS 12" –-cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff<br />
|
|
VBoxManage.exe modifyvm "Mac OS 12" –-cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff<br />
|
|
VBoxManage setextradata "Mac OS 12" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "MacBookPro15,1"<br />
|
|
VBoxManage setextradata "Mac OS 12" "VBoxInternal/Devices/efi/0/Config/DmiSystemProduct" "MacBookPro15,1"<br />
|
|
VBoxManage setextradata "Mac OS 12" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"<br />
|
|
VBoxManage setextradata "Mac OS 12" "VBoxInternal/Devices/efi/0/Config/DmiSystemVersion" "1.0"<br />
|