Save six bytes

This commit is contained in:
Tom Payne
2013-11-14 01:33:38 +01:00
parent 6b61f45379
commit c03ea3d0ee
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ ol.render.DragBox = function(opt_style) {
*/ */
this.style_ = goog.isDef(opt_style) ? opt_style : { this.style_ = goog.isDef(opt_style) ? opt_style : {
fill: { fill: {
color: 'rgba(255, 0, 0, 0.1)' color: 'rgba(255,0,0,0.1)'
}, },
image: null, image: null,
stroke: { stroke: {

View File

@@ -102,7 +102,7 @@ ol.style.StyleFunction;
* @type {ol.style.Fill} * @type {ol.style.Fill}
*/ */
ol.style.DEFAULT_FILL_STYLE = { ol.style.DEFAULT_FILL_STYLE = {
color: 'rgba(255, 0, 0, 0.1)' color: 'rgba(255,0,0,0.1)'
}; };