Commit 02175f9b authored by Pierre Rudloff's avatar Pierre Rudloff Committed by Italo Mairo
Browse files

Issue #3312282 by itamair: Cache icon size in setFeatureIconSizesIfEmptyOrInvalid()

parent 01708938
Loading
Loading
Loading
Loading
+1.25 KiB
Loading image diff...
+356 B
Loading image diff...
+3 −0
Original line number Diff line number Diff line
@@ -90,6 +90,9 @@ field.widget.settings.leaflet_widget_default:
        drawCircleMarker:
          type: boolean
          label: 'Draw Circle Marker'
        drawText:
          type: boolean
          label: 'Draw Text'
        editMode:
          type: boolean
          label: 'Edit Mode'
+22 −0
Original line number Diff line number Diff line
/**
 * @file
 * Visual styles for animated throbber.
 *
 * @see autocomplete.js
 */

.js input.form-autocomplete {
  background-image: url(../assets/throbber-inactive.png);
  background-repeat: no-repeat;
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete {
  background-position: 0% center;
}
.js input.form-autocomplete.ui-autocomplete-loading {
  background-image: url(../assets/throbber-active.gif);
  background-position: 100% center; /* LTR */
}
.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
  background-position: 0% center;
}
+1 −1
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ The Leaflet module features:
Please refer to the README file included into the project for all the details, including help on installation, configuration and usage.

<h3>NEW!</h3>
Leaflet 2.2.1 extends Leaflet Map Views capability to render data features from more Geofield-s sources
<strong>Leaflet 2.2.x is a natural continuation of the 2.1.x with full backward compatibility (it is safe to upgrade to)</strong>. It extends Leaflet Map Views capability to render data features from more Geofield-s sources.

<hr>
<h2>The Drupal 7 version of Leaflet</h2>
Loading