forked from steven-copley/nubuilder4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuselect.php
65 lines (47 loc) · 1.11 KB
/
nuselect.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<?php
require_once('nucommon.php');
nuJSInclude('jquery/jquery.js');
nuJSInclude('nuselectclass.js');
nuJSInclude('nuformclass.js');
nuJSInclude('nuform.js');
nuJSInclude('nuformdrag.js');
nuJSInclude('nudrag.js');
nuJSInclude('nureportdrag.js');
nuJSInclude('nucalendar.js');
nuJSInclude('nucommon.js');
nuJSInclude('nuajax.js'); //-- calls to server
nuJSInclude('nureportjson.js');
nuCSSInclude('nubuilder4.css');
nuCSSInclude('nudrag.css');
?>
<style>
body{
background-image: url("graphics/grid.png");
}
</style>
<script>
window.nuSuffix = 1000;
window.nuSQL = new nuSelectObject();
window.nuCurrentID = '';
window.nuY = 0;
window.nuX = 0;
function nuLoad(){
if(!nuSQL.rebuildGraphic()){
return;
}
$(document).mousemove(function(event){
nuMove(event);
});
$(document).mousedown(function(event){
nuDown(event);
});
$(document).mouseup(function(event){
nuUp(event);
});
parent.nuHasNotBeenEdited();
}
</script>
</head><body onload='nuLoad()'></body></html>