blob: 30a305b66fe7fa797a4581a475ea122baf9a04d8 [file] [log] [blame]
/*
* Copyright (c) 2013 The Native Client Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
/* globals NaClTerm, lib */
'use strict';
NaClTerm.nmf = 'mongoose.nmf';
lib.rtdep('lib.f');
window.onload = function() {
lib.init(function() {
navigator.webkitPersistentStorage.requestQuota(1024*1024,
function(bytes) {
NaClTerm.init();
},
function(e) { console.log('Error', e); });
});
};