Removed Prefix from method names, since now it's part of the module name

This commit is contained in:
Gregers Gram Rygg
2012-06-27 13:33:47 +02:00
parent 7f32342ec3
commit 1ba6aa75d7
4 changed files with 21 additions and 21 deletions

View File

@@ -20,7 +20,7 @@ OpenLayers.Animation = (function(window) {
* Property: isNative
* {Boolean} true if a native requestAnimationFrame function is available
*/
var requestAnimationFrame = OpenLayers.Util.vendorPrefix.jsPrefix(window, "requestAnimationFrame");
var requestAnimationFrame = OpenLayers.Util.vendorPrefix.js(window, "requestAnimationFrame");
var isNative = !!(requestAnimationFrame);
/**