mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-13 06:36:26 +03:00
Commit3d9f4aeaccidentally reverted public/app.js and public/css/main.css (plus other files) to old versions. This broke the site because: - app.js imported from deleted files (commands.js, skills.js) - main.css lost 1200+ lines of Renaissance redesign (split comparison, etc.) Restored from commit343e342which had the working frontend. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
305 B
JavaScript
16 lines
305 B
JavaScript
import { initSplitCompare } from "../effects/split-compare.js";
|
|
|
|
export function initLensEffect() {
|
|
const container = document.getElementById("lens-comparison");
|
|
if (!container) return;
|
|
|
|
initSplitCompare(container, {
|
|
defaultPosition: 70,
|
|
skewOffset: 8,
|
|
minPosition: 5,
|
|
maxPosition: 95
|
|
});
|
|
}
|
|
|
|
|