Changeset 7246
- Timestamp:
- 05/22/08 01:58:30 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/vector-behavior/lib/OpenLayers/Strategy/Autosave.js
r7233 r7246 4 4 5 5 /** 6 * Class: OpenLayers.Strategy.Autosa ce6 * Class: OpenLayers.Strategy.Autosave 7 7 * A strategy that commits modifications features whenever they are drawn or modified. 8 8 * 9 9 * Inherits from: 10 * - OpenLayers.Strategy 10 * - OpenLayers.Strategy.Save 11 11 */ 12 12 OpenLayers.Strategy.Autosave = new OpenLayers.Class(OpenLayers.Strategy.Save, { … … 14 14 15 15 /** 16 * Constructor: OpenLayers.Strategy. Fixed17 * Create a new Fixedstrategy.16 * Constructor: OpenLayers.Strategy.Autosave 17 * Create a new Autosave strategy. 18 18 * 19 19 * Parameters: … … 33 33 destroy: function() { 34 34 35 OpenLayers.Strategy. prototype.destroy.apply(this, arguments);35 OpenLayers.Strategy.Save.prototype.destroy.apply(this, arguments); 36 36 }, 37 37
