Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed all the "1" width true for evading coercion in case testing #3

Closed
wants to merge 4 commits into from

Conversation

skill83
Copy link

@skill83 skill83 commented May 18, 2011

Changed all the "1" width true for evading coercion in testing for example in cases like this
if(bowser.msie && bowser.version < 9){
//some stuff here
}

…xample in cases like this

if(bowser.msie && bowser.version < 9){
    //some stuff here
}
@ded
Copy link
Collaborator

ded commented May 18, 2011

how about create one variable and use it in each of the places... like...

(function (context, t) {
  var bla = t;
}(this, true);

…on and using that one for bowser.version probably a solution to enable graded browser support (it wasn't working for me before)
… browser support and changed all the 1 with true for evoiding coercion wrapping it in one variable as suggested....

!function (context,t) {
  //bla bla
}(this,true);
@ded ded closed this Jun 23, 2011
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants