Thread: Styling errors.
View Single Post
  #1  
Old 02-22-2008, 06:45 PM
bscharff bscharff is offline
Bloo
bscharff's Avatar
Join Date: Sep 2006
Location: San Antonio, Texas
Posts: 185
bscharff has a little shameless behaviour in the past
Send a message via AIM to bscharff Send a message via MSN to bscharff Send a message via Yahoo to bscharff
Styling errors.

Basically, when I script and don't feel like hand-styling it myself, I'll use RC's /style.

But there's two problems; the for () and @= don't style properly.

for () example:

BEFORE
PHP Code:
function onCreated(){
  for (
temp.foothis.foo){
    
doStuff(temp.foo);
  }

AFTER
PHP Code:
function onCreated(){
for (
temp.foothis.foo){
    
doStuff(temp.foo);
  }


@= example:

BEFORE
PHP Code:
function onCreated(){
  
temp.foo @= this.foo;

AFTER
PHP Code:
function onCreated(){
  
temp.foo @ = this.foo;

__________________
Trying to be nice now...
Reply With Quote