Content deleted Content added
Cramulator (talk | contribs) ←Created page with '(function() { // based on https://en.wikipedia.org/wiki/User:Polygnotus/Scripts/Claude6.js 'use strict'; class WikipediaGeminiProofreader { constructor() { this.apiKey = localStorage.getItem('gemini_api_key'); this.sidebarWidth = localStorage.getItem('gemini_sidebar_width') || '350px'; this.isVisible = localStorage.getItem('gemini_sidebar_visible') !== 'false'; this.currentResults = localStora...' |
Cramulator (talk | contribs) No edit summary |
||
Line 1:
(function() {
'use strict';
class WikipediaGeminiProofreader {
Line 8 ⟶ 9:
this.currentResults = localStorage.getItem('gemini_current_results') || '';
this.buttons = {};
this.modelName = 'gemini-2.5-
this.init();
}
Line 446 ⟶ 447:
title: 'Set Gemini API Key', // Changed
message: $('<div>').append(
$('<p>').
textInput.$element
),
|