1
0
Fork 0
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:
Alan Huang 2012-08-24 09:36:40 -07:00
parent b0802a7797
commit d9a133d716
2 changed files with 4 additions and 3 deletions

View file

@ -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(

View file

@ -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;