#823 New class style. Instead of OldStyle = Class.create(); OldStyle.prototype = Class.inherit(Parent, prototype), we now use NewStyle = OpenLayers.Class(Parent, prototype). New style classes allow for backwards compatibility [you can use OldStyle = Class.create(); Class.inherit(NewStyle, prototype)]. The Class.create and Class.inherit functions are deprecated. Backwards compatibility will be removed at 3.0. Thanks Erik for the careful review.
git-svn-id: http://svn.openlayers.org/trunk/openlayers@3767 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
OpenLayers.Rico.Color = OpenLayers.Class.create();
|
||||
|
||||
OpenLayers.Rico.Color.prototype = {
|
||||
OpenLayers.Rico.Color = OpenLayers.Class({
|
||||
|
||||
initialize: function(red, green, blue) {
|
||||
this.rgb = { r: red, g : green, b : blue };
|
||||
@@ -87,7 +85,7 @@ OpenLayers.Rico.Color.prototype = {
|
||||
return this.asHex();
|
||||
}
|
||||
|
||||
};
|
||||
});
|
||||
|
||||
OpenLayers.Rico.Color.createFromHex = function(hexCode) {
|
||||
if(hexCode.length==4) {
|
||||
|
||||
Reference in New Issue
Block a user