14 lines
198 B
JavaScript
14 lines
198 B
JavaScript
|
define(function(){
|
||
|
var data
|
||
|
return function(el,config){
|
||
|
return {
|
||
|
storageNotify: function(d){
|
||
|
data = d
|
||
|
},
|
||
|
controller: function(){
|
||
|
el.innerHTML = "Not implemented"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
})
|