Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 417864
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.editor/web/orion/editor/htmlContentAssist.js (-1 / +1 lines)
Lines 122-128 Link Here
122
122
123
	HTMLContentAssistProvider.prototype.getPrefix = function(buffer, offset, context) {
123
	HTMLContentAssistProvider.prototype.getPrefix = function(buffer, offset, context) {
124
		var index = offset;
124
		var index = offset;
125
		while (index && /[A-Za-z<]/.test(buffer.charAt(index - 1))) {
125
		while (index && /[A-Za-z0-9<]/.test(buffer.charAt(index - 1))) {
126
			index--;
126
			index--;
127
			if (buffer.charAt(index) === "<") { //$NON-NLS-0$
127
			if (buffer.charAt(index) === "<") { //$NON-NLS-0$
128
				break;
128
				break;

Return to bug 417864