freifunkmanager/js/controller/nodes.js

14 lines
199 B
JavaScript
Raw Normal View History

2016-07-01 08:25:32 +02:00
define(function(){
2016-07-01 16:01:28 +02:00
var data;
2016-07-02 02:11:17 +02:00
return function(el){
2016-07-01 08:25:32 +02:00
return {
storageNotify: function(d){
2016-07-01 16:01:28 +02:00
data = d;
2016-07-01 08:25:32 +02:00
},
controller: function(){
2016-07-02 02:11:17 +02:00
el.textContent = "Not implemented";
2016-07-01 08:25:32 +02:00
}
2016-07-01 16:01:28 +02:00
};
};
});