mirror of
https://github.com/overte-org/overte.git
synced 2025-04-27 16:55:53 +02:00
11 lines
336 B
JavaScript
11 lines
336 B
JavaScript
var remote = require('electron').remote;
|
|
|
|
ready = function() {
|
|
window.$ = require('./vendor/jquery/jquery-2.1.4.min.js');
|
|
|
|
var userConfig = remote.getGlobal('userConfig');
|
|
$('#suppress-splash').change(function() {
|
|
console.log("updating");
|
|
userConfig.set('doNotShowSplash', $(this).is(':checked'));
|
|
});
|
|
}
|