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
clear lock | |
keycode 66 = KP_Enter |
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
"xte 'keydown Control_L' 'keydown Alt_L' 'key Up' 'keyup Control_L' 'keyup Alt_L'" | |
b:9 | |
"xte 'keydown Control_L' 'keydown Alt_L' 'key Down' 'keyup Control_L' 'keyup Alt_L'" | |
b:8 |
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 | |
return [ | |
'messages' => [ | |
// Transaction response messages | |
'A2000' => 'Transaction Approved', | |
'A2008' => 'Honour With Identification', | |
'A2010' => 'Approved For Partial Amount', | |
'A2011' => 'Approved, VIP', | |
'A2016' => 'Approved, Update Track 3', |
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
var serviceWorkerRegistration; | |
if ('serviceWorker' in navigator) { | |
window.addEventListener('load', function () { | |
serviceWorkerRegistration = registerServiceWorker(); | |
}); | |
} | |
function registerServiceWorker() { | |
return navigator.serviceWorker.register('service_worker.js') |