Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Removed a bogus, but harmless, JS dep and corrected some copy/pasted docs. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | fileedit-ajaxify |
| Files: | files | file ages | folders |
| SHA3-256: |
2abc1ff42a4d3e1dbb91e09917f341a6 |
| User & Date: | stephan 2020-05-06 03:30:26.259 |
Context
|
2020-05-06
| ||
| 04:52 | Minor code style improvements, fixed a couple jquery-isms in the confirmer port, added the ability to select tabs by number and pre-select a specific tab, removed a superfluous C function. ... (check-in: 9085ec2351 user: stephan tags: fileedit-ajaxify) | |
| 03:30 | Removed a bogus, but harmless, JS dep and corrected some copy/pasted docs. ... (check-in: 2abc1ff42a user: stephan tags: fileedit-ajaxify) | |
| 03:19 | Removed devious hard tabs which slipped in while porting. ... (check-in: 626c45609e user: stephan tags: fileedit-ajaxify) | |
Changes
Changes to src/style.c.
| ︙ | ︙ | |||
1519 1520 1521 1522 1523 1524 1525 |
char * zFull = mprintf("builtin/%s",zName);
style_emit_script_tag(0,zFull);
fossil_free(zFull);
}
}
/*
| | | | 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 |
char * zFull = mprintf("builtin/%s",zName);
style_emit_script_tag(0,zFull);
fossil_free(zFull);
}
}
/*
** The first time this is called it emits the JS code from the
** built-in file fossil.fossil.js. Subsequent calls are no-ops.
**
** If passed a true value, it emits the contents directly
** to the page output, else it emits a script tag with a
** src=builtin/... to load the script.
**
** Note that this code relies on that loaded via
** style_emit_script_fossil_bootstrap() but it does not call that
** routine.
*/
void style_emit_script_fetch(int asInline){
static int once = 0;
if(0==once++){
style_emit_script_builtin("fossil.fetch.js", asInline);
}
}
/*
** The first time this is called it emits the JS code from the
** built-in file fossil.dom.js. Subsequent calls are no-ops.
**
** If passed a true value, it emits the contents directly
** to the page output, else it emits a script tag with a
** src=builtin/... to load the script.
**
** Note that this code relies on that loaded via
|
| ︙ | ︙ | |||
1574 1575 1576 1577 1578 1579 1580 |
if(0==once++){
style_emit_script_dom(asInline);
style_emit_script_builtin("fossil.tabs.js",asInline);
}
}
/*
| | < < | 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 |
if(0==once++){
style_emit_script_dom(asInline);
style_emit_script_builtin("fossil.tabs.js",asInline);
}
}
/*
** The first time this is called it emits the JS code from the
** built-in file fossil.confirmer.js. Subsequent calls are no-ops.
**
** If passed a true value, it emits the contents directly
** to the page output, else it emits a script tag with a
** src=builtin/... to load the script.
*/
void style_emit_script_confirmer(int asInline){
static int once = 0;
if(0==once++){
style_emit_script_builtin("fossil.confirmer.js",asInline);
}
}
|