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 471839
Collapse All | Expand All

(-)a/bundles/org.eclipse.orion.client.ui/web/orion/editorView.js (-1 / +2 lines)
Lines 462-468 Link Here
462
				this.localSettings = EditorSettings ? new EditorSettings({local: true, editor: editor, themePreferences: this.themePreferences, preferences: this.editorPreferences}) : null;
462
				this.localSettings = EditorSettings ? new EditorSettings({local: true, editor: editor, themePreferences: this.themePreferences, preferences: this.editorPreferences}) : null;
463
			}
463
			}
464
			var liveEditSession = new LiveEditSession(serviceRegistry, editor);
464
			var liveEditSession = new LiveEditSession(serviceRegistry, editor);
465
			var recordListener = function() {
465
			var recordListener = function(evt) {
466
				that.loadSession(evt);
466
				that.recordSession();
467
				that.recordSession();
467
			};
468
			};
468
			inputManager.addEventListener("InputChanging", recordListener); //$NON-NLS-0$
469
			inputManager.addEventListener("InputChanging", recordListener); //$NON-NLS-0$
(-)a/bundles/org.eclipse.orion.client.ui/web/orion/inputManager.js (-1 / +5 lines)
Lines 487-493 Link Here
487
						this.reportStatus("");
487
						this.reportStatus("");
488
						this._setInputContents(input, fileURI, null, this._fileMetadata, this._isText(this._fileMetadata));
488
						this._setInputContents(input, fileURI, null, this._fileMetadata, this._isText(this._fileMetadata));
489
					} else {
489
					} else {
490
						this.processParameters(input);
490
						if (!this.processParameters(input)) {
491
							if (evt.session) {
492
								evt.session.apply();
493
							}
494
						}
491
					}
495
					}
492
				} else {
496
				} else {
493
					this._input = fileURI;
497
					this._input = fileURI;

Return to bug 471839