freifunkmanager/js/controller/frame.js

11 lines
189 B
JavaScript
Raw Normal View History

2016-07-01 11:16:39 +02:00
define(function(){
return function(el,url){
var frame = document.createElement("iframe")
frame.src = url
el.appendChild(frame)
console.log("create")
return function(){
}
}
})