Changeset 3298
- Timestamp:
- 05/20/07 16:33:59 (20 months ago)
- Files:
-
- 1 modified
-
sandbox/script/common2.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sandbox/script/common2.js
r3293 r3298 1087 1087 width = 450; 1088 1088 height = 400; 1089 if(openWindow != '') openWindow.close(); 1089 try { 1090 if(openWindow != '') openWindow.close(); 1091 } catch (e) {} 1090 1092 openWindow = window.open(blogURL + "/comment/delete/" + id, "tatter", "width="+width+",height="+height+",location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0"); 1091 1093 openWindow.focus(); … … 1096 1098 width = 450; 1097 1099 height = 380; 1098 if(openWindow != '') openWindow.close(); 1100 try { 1101 if(openWindow != '') openWindow.close(); 1102 } catch (e) {} 1099 1103 openWindow = window.open(blogURL + "/comment/comment/" + parent, "tatter", "width="+width+",height="+height+",location=0,menubar=0,resizable=0,scrollbars=0,status=0,toolbar=0"); 1100 1104 openWindow.focus();
