mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-27 17:35:07 +01:00
Replace var declarations with let declarations (#576)
* Replace var declaration with let declaration
This commit is contained in:
parent
79913d4c17
commit
455f78b178
3 changed files with 7 additions and 7 deletions
|
@ -1,4 +1,4 @@
|
||||||
var $wrap = document.getElementById('loading-animation'),
|
let $wrap = document.getElementById('loading-animation'),
|
||||||
|
|
||||||
canvassize = 380,
|
canvassize = 380,
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ mesh = new THREE.Mesh(
|
||||||
new THREE.TubeGeometry(new (THREE.Curve.create(function() {},
|
new THREE.TubeGeometry(new (THREE.Curve.create(function() {},
|
||||||
function(percent) {
|
function(percent) {
|
||||||
|
|
||||||
var x = length*Math.sin(pi2*percent),
|
let x = length*Math.sin(pi2*percent),
|
||||||
y = radius*Math.cos(pi2*3*percent),
|
y = radius*Math.cos(pi2*3*percent),
|
||||||
z, t;
|
z, t;
|
||||||
|
|
||||||
|
@ -63,7 +63,7 @@ group.add(ring);
|
||||||
|
|
||||||
// fake shadow
|
// fake shadow
|
||||||
(function() {
|
(function() {
|
||||||
var plain, i;
|
let plain, i;
|
||||||
for (i = 0; i < 10; i++) {
|
for (i = 0; i < 10; i++) {
|
||||||
plain = new THREE.Mesh(new THREE.PlaneGeometry(length*2+1, radius*3, 1), new THREE.MeshBasicMaterial({color: 0xd1684e, transparent: true, opacity: 0.15}));
|
plain = new THREE.Mesh(new THREE.PlaneGeometry(length*2+1, radius*3, 1), new THREE.MeshBasicMaterial({color: 0xd1684e, transparent: true, opacity: 0.15}));
|
||||||
plain.position.z = -2.5+i*0.5;
|
plain.position.z = -2.5+i*0.5;
|
||||||
|
@ -94,7 +94,7 @@ function tilt(percent) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function render() {
|
function render() {
|
||||||
var progress;
|
let progress;
|
||||||
|
|
||||||
animatestep = Math.max(0, Math.min(240, toend ? animatestep+1 : animatestep-4));
|
animatestep = Math.max(0, Math.min(240, toend ? animatestep+1 : animatestep-4));
|
||||||
acceleration = easing(animatestep, 0, 1, 240);
|
acceleration = easing(animatestep, 0, 1, 240);
|
||||||
|
|
|
@ -68,7 +68,7 @@ const schema = {
|
||||||
};
|
};
|
||||||
|
|
||||||
let syncing = false;
|
let syncing = false;
|
||||||
var state = {}
|
let state = {}
|
||||||
const store = new Store({ schema });
|
const store = new Store({ schema });
|
||||||
|
|
||||||
console.log(store);
|
console.log(store);
|
||||||
|
@ -384,7 +384,7 @@ const createWindow = (tab = 'chat.html') => {
|
||||||
firstRun = false;
|
firstRun = false;
|
||||||
|
|
||||||
// Create splash screen
|
// Create splash screen
|
||||||
var splash = new BrowserWindow({width: 400, height: 400, transparent: true, frame: false, alwaysOnTop: true});
|
let splash = new BrowserWindow({width: 400, height: 400, transparent: true, frame: false, alwaysOnTop: true});
|
||||||
splash.setOpacity(1.0);
|
splash.setOpacity(1.0);
|
||||||
splash.setBackgroundColor('#d16b4e');
|
splash.setBackgroundColor('#d16b4e');
|
||||||
splash.loadFile('splash.html');
|
splash.loadFile('splash.html');
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
// Toggle the navigation menu
|
// Toggle the navigation menu
|
||||||
function toggleMenu() {
|
function toggleMenu() {
|
||||||
var menu = document.getElementById("khoj-nav-menu");
|
let menu = document.getElementById("khoj-nav-menu");
|
||||||
menu.classList.toggle("show");
|
menu.classList.toggle("show");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue