##// END OF EJS Templates
javascript: fix missing variable declaration
Mads Kiilerich -
r5515:cb17acb4 stable
parent child Browse files
Show More
@@ -951,7 +951,7 var _getIdentNode = function(n){
951 var getSelectionLink = function(e) {
951 var getSelectionLink = function(e) {
952 //get selection from start/to nodes
952 //get selection from start/to nodes
953 if (typeof window.getSelection != "undefined") {
953 if (typeof window.getSelection != "undefined") {
954 s = window.getSelection();
954 var s = window.getSelection();
955
955
956 var from = _getIdentNode(s.anchorNode);
956 var from = _getIdentNode(s.anchorNode);
957 var till = _getIdentNode(s.focusNode);
957 var till = _getIdentNode(s.focusNode);
General Comments 0
You need to be logged in to leave comments. Login now