Index: bootstrap2.js
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/javascript
Index: localconfig.js
===================================================================
--- localconfig.js (revision 208848)
+++ localconfig.js (revision 208939)
@@ -67,7 +67,7 @@
// lively.Config.modulesOnWorldLoad.push('lively.experimental.WorldSearch')
try {
- var s = localStorage["livelyExperimentalFeatures"]
+ var s = localStorage["ExperimentalFeaturesWebwerkstatt"]
var features = JSON.parse(s)
features.each(function(ea) {
lively.Config.modulesOnWorldLoad.push('lively.experimental.' + ea)
Index: experimental/ExperimentalFeatures.js
===================================================================
--- experimental/ExperimentalFeatures.js (revision 208848)
+++ experimental/ExperimentalFeatures.js (revision 208939)
@@ -5,7 +5,7 @@
getExperimentalFeatures: function() {
// todo: make tim happy, by adding more experimental features!
- var s = lively.LocalStorage.get("ExperimentalFeatures")
+ var s = lively.LocalStorage.get("ExperimentalFeaturesWebwerkstatt")
try {
return JSON.parse(s)
} catch(e) {
@@ -19,7 +19,7 @@
var all = this.getExperimentalFeatures()
if (!all.include(feature)) {
all.push(feature)
- lively.LocalStorage.set("ExperimentalFeatures", JSON.serialize(all))
+ lively.LocalStorage.set("ExperimentalFeaturesWebwerkstatt", JSON.serialize(all))
}
var layer = this.getLayerForFeature(feature);
if (layer) {
@@ -32,7 +32,7 @@
var all = this.getExperimentalFeatures()
if (all.include(feature)) {
all.remove(feature)
- lively.LocalStorage.set("ExperimentalFeatures", JSON.serialize(all))
+ lively.LocalStorage.set("ExperimentalFeaturesWebwerkstatt", JSON.serialize(all))
}
var layer = this.getLayerForFeature(feature);
if (layer) {
@@ -52,7 +52,7 @@
},
isFeatureActive: function(feature) {
// return this.getModuleForFeature(feature).isLoaded()
- return JSON.parse(lively.LocalStorage.get("ExperimentalFeatures")||"[]").include(feature)
+ return JSON.parse(lively.LocalStorage.get("ExperimentalFeaturesWebwerkstatt")||"[]").include(feature)
},
morphMenuItems: function() {
var items = cop.proceed()