mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-26 00:32:42 +01:00
Minor: Make the Matrix characters backwards as they should be.
This commit is contained in:
parent
b0802a7797
commit
d9a133d716
2 changed files with 4 additions and 3 deletions
|
@ -1203,7 +1203,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'javelin-behavior-differential-toggle-files' =>
|
||||
array(
|
||||
'uri' => '/res/983960b4/rsrc/js/application/differential/behavior-toggle-files.js',
|
||||
'uri' => '/res/ae937207/rsrc/js/application/differential/behavior-toggle-files.js',
|
||||
'type' => 'js',
|
||||
'requires' =>
|
||||
array(
|
||||
|
@ -1337,7 +1337,7 @@ celerity_register_resource_map(array(
|
|||
),
|
||||
'javelin-behavior-konami' =>
|
||||
array(
|
||||
'uri' => '/res/4f9442c2/rsrc/js/application/core/behavior-konami.js',
|
||||
'uri' => '/res/5f4b32fe/rsrc/js/application/core/behavior-konami.js',
|
||||
'type' => 'js',
|
||||
'requires' =>
|
||||
array(
|
||||
|
|
|
@ -82,7 +82,8 @@ JX.behavior('konami', function() {
|
|||
element.textContent = text;
|
||||
modifyCSS(element.style, 'left',
|
||||
Math.random() * document.body.clientWidth + 'px');
|
||||
modifyAllCSS(element.style, 'transform', 'translateZ(' + z + 'px)');
|
||||
modifyAllCSS(element.style, 'transform',
|
||||
'translateZ(' + z + 'px) rotateY(180deg)');
|
||||
document.body.appendChild(element);
|
||||
|
||||
var height = element.clientHeight;
|
||||
|
|
Loading…
Reference in a new issue