blob: a9891ecedebee44d2ba422bc0ca1ca790025414e [file] [log] [blame]
// Copyright (c) 2000-2017 Ericsson Telecom AB //
// All rights reserved. This program and the accompanying materials are made available under the //
// terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at //
// http://www.eclipse.org/legal/epl-v10.html //
///////////////////////////////////////////////////////////////////////////////////////////////////////
function ServerBrowser_ViewModel(p_fileHandler) {
"use strict";
var v_fileHandler = p_fileHandler;
this.init = function(p_callback) {
p_callback(true);
};
this.destroy = function() {};
this.loadFile = v_fileHandler.loadFile;
this.loadCss = v_fileHandler.loadCss;
this.ls = v_fileHandler.getDirectory;
}
//# sourceURL=ServerBrowser\ViewModel.js