equal
deleted
inserted
replaced
21 |
21 |
22 // Run-time variables |
22 // Run-time variables |
23 |
23 |
24 var detect = navigator.userAgent.toLowerCase(); |
24 var detect = navigator.userAgent.toLowerCase(); |
25 var IE; |
25 var IE; |
|
26 var is_Safari; |
26 |
27 |
27 // dummy tinyMCE object |
28 // dummy tinyMCE object |
28 var tinyMCE = new Object(); |
29 var tinyMCE = new Object(); |
29 |
30 |
30 // Detect whether the user is running the Evil One or not... |
31 // Detect whether the user is running the Evil One or not... |
34 thestring = string; |
35 thestring = string; |
35 return place; |
36 return place; |
36 } |
37 } |
37 if (checkIt('msie')) IE = true; |
38 if (checkIt('msie')) IE = true; |
38 else IE = false; |
39 else IE = false; |
|
40 |
|
41 is_Safari = checkIt('safari') ? true : false; |
39 |
42 |
40 var cmt_open; |
43 var cmt_open; |
41 var list; |
44 var list; |
42 var edit_open = false; |
45 var edit_open = false; |
43 var catlist = new Array(); |
46 var catlist = new Array(); |