Opened 17 years ago
Closed 16 years ago
#1090 closed Task (wontfix)
Use range.detach
Reported by: | Frederico Caldeira Knabben | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.0 |
Component: | General | Version: | |
Keywords: | Confirmed | Cc: |
Description
We are extensively using ranges in FCKeditor. The W3C and MDC define the range.detach() function. The following is its description from the MDC:
"Releases Range from use to improve performance."
It seams we are not using it in our code. We need to investigate all points in the code that could take benefit of it.
Change History (2)
comment:1 Changed 17 years ago by
Keywords: | Confirmed added |
---|
comment:2 Changed 16 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Our stuff is mostly based on our custom range implementation. I believe we'll not have that much benefit from it at this point.
range.detach() will only improve the performance therefore guarantee realising the system memory when a range is once created and afterwards is not needed any more. In other cases a range will be deleted by the garbage collector mechanism.