EPI setters no longer return this

This commit is contained in:
Éric Lemoine
2012-06-20 11:05:23 +02:00
parent 41df32df9a
commit 487e61884e
7 changed files with 16 additions and 68 deletions

View File

@@ -61,7 +61,8 @@ ol.bounds = function(opt_arg){
*/
ol.Bounds.prototype.projection = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setProjection(opt_arg);
this.setProjection(opt_arg);
return this;
}
else {
return this.getProjection();
@@ -76,7 +77,8 @@ ol.Bounds.prototype.projection = function(opt_arg){
*/
ol.Bounds.prototype.minX = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setMinX(opt_arg);
this.setMinX(opt_arg);
return this;
}
else {
return this.getMinX();
@@ -91,7 +93,8 @@ ol.Bounds.prototype.minX = function(opt_arg){
*/
ol.Bounds.prototype.minY = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setMinY(opt_arg);
this.setMinY(opt_arg);
return this;
}
else {
return this.getMinY();
@@ -106,7 +109,8 @@ ol.Bounds.prototype.minY = function(opt_arg){
*/
ol.Bounds.prototype.maxX = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setMaxX(opt_arg);
this.setMaxX(opt_arg);
return this;
}
else {
return this.getMaxX();
@@ -121,7 +125,8 @@ ol.Bounds.prototype.maxX = function(opt_arg){
*/
ol.Bounds.prototype.maxY = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setMaxY(opt_arg);
this.setMaxY(opt_arg);
return this;
}
else {
return this.getMaxY();

View File

@@ -75,7 +75,8 @@ ol.Loc.prototype.projection = function(opt_arg){
*/
ol.Loc.prototype.x = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setX(opt_arg);
this.setX(opt_arg);
return this;
}
else {
return this.getX();
@@ -90,7 +91,8 @@ ol.Loc.prototype.x = function(opt_arg){
*/
ol.Loc.prototype.y = function(opt_arg){
if (arguments.length == 1 && goog.isDef(opt_arg)) {
return this.setY(opt_arg);
this.setY(opt_arg);
return this;
}
else {
return this.getY();

View File

@@ -52,7 +52,8 @@ ol.projection = function(opt_arg){
*/
ol.Projection.prototype.code = function(opt_code){
if (arguments.length == 1 && goog.isDef(opt_code)) {
return this.setCode(opt_code);
this.setCode(opt_code);
return this;
}
else {
return this.getCode();