summaryrefslogtreecommitdiff
path: root/scripts
AgeCommit message (Collapse)Author
2012-05-27Try to avoid overlapping hintsportix
2012-05-23Create hints for image maps, closing #177portix
2012-05-18Merging branch scripts into defaultportix
2012-05-18Execute scripts from commandlineportix
--HG-- branch : scripts
2012-05-17Merging branch scripts into defaultportix
2012-05-14Remove javascript scripts directory and reload_scripts; change io.fileTest ↵portix
to system.fileTest; implement system.mkdir --HG-- branch : scripts
2012-05-13Implementing @match-rules in userscriptsportix
--HG-- branch : scripts
2012-05-11Call Object.freeze on the hint object instead of making returned functions ↵portix
readonly individually
2012-05-09Forget globals.jsportix
--HG-- branch : scripts
2012-05-09Freeze extensions and data object, real private properties for the signal ↵portix
object. --HG-- branch : scripts
2012-05-07Don't print arguments length when initializing extensionsportix
--HG-- branch : scripts
2012-05-07Optional argument config for extensions.loadportix
--HG-- branch : scripts
2012-05-05New function, io.fileTestportix
--HG-- branch : scripts
2012-05-05New global functions bind, prompt, checksum; new property mainFrame; new ↵portix
extension genpass --HG-- branch : scripts
2012-05-03New extension perdomainsettingsportix
--HG-- branch : scripts
2012-05-02Make extension.config privateportix
--HG-- branch : scripts
2012-04-29Get gobject properties from scripts; started rewriting of documentationportix
--HG-- branch : scripts
2012-04-23Exception message, rename plugins in extensionsportix
--HG-- branch : scripts
2012-04-21stdout/stderr callbacks for system.spawnportix
--HG-- branch : scripts
2012-04-20New signal downloadStatusportix
--HG-- branch : scripts
2012-04-20Buttonpress/release, keypress/release, register/deregister signals on the ↵portix
fly, documentation --HG-- branch : scripts
2012-04-19Implementing inject and resource requestportix
--HG-- branch : scripts
2012-04-18Encapsulate all included scriptsportix
--HG-- branch : scripts
2012-04-18Return id from connectportix
--HG-- branch : scripts
2012-04-18Adding scripts/lib, implementing signal functionsportix
--HG-- branch : scripts
2012-04-08Use a globals-object for variables in hints.js; remove default values in ↵portix
hint-object; call init() on load-committed
2012-03-20New option hint-autofollow, closing #118; free scripts, userscripts and ↵portix
hint_style in dwb_clean_up
2012-03-19Change parameter order in showHints()portix
--HG-- branch : refactor
2012-03-19Branch refactor: Use an anonymous, readonly object for hintsportix
--HG-- branch : refactor
2012-03-17Immediately return in hints.js if HINT_T_URL is evaluatedportix
2012-03-11Remove console.log messagesportix
2012-03-11Hints: in __evaluate, evaluate all type of hintsportix
2012-03-09Add 'role'-attribute to hints query-selector, fixes missing hints on gmail.comportix
2012-03-08Dispatch button 2 in hints.js for new tabs; don't load session in newly ↵portix
created windows
2012-01-18Don't let mouse clicks emitted in hints.js bubble only if a new tab is ↵portix
requested.
2012-01-18Fixing adding searchenginesportix
2012-01-17Setting correct margin of hintsportix
2012-01-17Don't let mouse click events bubble up in hints.jsportix
2012-01-16Computing hint position fixportix
2012-01-14Accommodate for margins, too (padding was already taken care of by previous ↵Peter Bex
commit)
2012-01-14Fix offset problem with hints when the HTML (or body?) element has a padding ↵Peter Bex
or other odd offset
2012-01-09Second color for tabsportix
2012-01-09Compute all textcontents for hints in one function; only take necessary ↵portix
letters for letter hints
2012-01-08Computing correct letterseq for letter hints (in the correct branch)portix
2012-01-04Rapid hint modeportix
2011-12-27A few more jslint fixes:Peter Bex
- Giving DwbHintObj a value twice is unneccessary. It's executed in global scope, so we can use 'var'. - h = comptop > 0 ? height : height + comptop; versus height + Math.max(0, comptop); - "overlay", "styleSheet" and "styles" were not declared with var so would clobber global variable of the same name - The pattern x ? x : y can be written more idiomatically as x || y (since boolean operators return either the last true value in a chain, or false) - no need to explicitly check for the value "undefined" if it's done type-unsafely (== instead of ===). Just checking for truth is enough - jslint whines about catch(e) if in try's scope the variable e is defined, because it's "hoisted" up to the surrounding function definition - activeInput construction was marked as "confusing" by jslint. It can be made simpler by using the "last value returned" property of boolean operators described above.
2011-12-27Remove unused variables in hints.jsportix
2011-12-27Making hints.js passing jsl, removing global variables in hints.jsportix
2011-12-21Move autoscroll.all.js into examples directoryportix
--HG-- rename : scripts/autoscroll.all.js => examples/autoscroll.all.js
2011-11-29Introducing scripts with suffix .all.js, these sripts are applied to all framesportix
--HG-- rename : scripts/autoscroll.js => scripts/autoscroll.all.js