blob: 919a16966119296ac1d2979a63f2920c952047f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// <button id="demo">demo</button>
var demo = function(){
$("#demo").click(function(){ run("#first") })
run('#first')
function run(el){
$el = $(el)
s = $el.html()
$("#shader").html(s)
shader_build()
}
})
|