How come this alerts both, yes and false?
Modernizr.load([
{
test: Modernizr.cssgradients,
yep: alert('Supports it!'),
nope: alert('Oh, damn! This browser sucks!')
}
]);
I'm using the latest chrome on OS X.
|
How come this alerts both, yes and false?
I'm using the latest chrome on OS X.
| |||
|
feedback
|
|
Because you're calling
This still won't work because it's not how yepnope works.
As you discovered yourself, if you don't want to use the integrated yepnope.js, you can just use Modernizr the traditional way:
| |||||||||
feedback
|
|
The | |||
|
feedback
|
|
With yepnope prefixes, it's possible to run predefined, named functions. Note: I have only tested this with latest chrome on OS X. However, for this to work, you will need a "dummy URL", e.g., an image that you plan to load on the page (your logo is a good candidate). Also, because
Of course, if you don't want to pollute the global The real power of this is that | |||
|
feedback
|