| Commit message (Collapse) | Author | Age |
| |
|
|
|
|
| |
for jquery
|
|
|
|
|
|
|
| |
Safari 9 in iOS does not support the use of `const` in strict mode. Unfortunately, some of us are stuck with Safari 9 due to not being able to upgrade.
I am a big fan of progressive enhancement, but because all javascript code is packed together and sent off to the client, this small incompatibility breaks all javascript for safari 9 browsers. Switching these two keywords makes everything work again.
There are no other uses of `const` in the codebase as far as I can find. This change has little to no impact on anything else, but slighlty extends the range of supported browsers.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Plugins may want to add further fields to be present when saving drafts.
Plugins may want to execute some js functionality that should be timed to
the saved draft/refreshed lock.
If a plugin does another init() to attach the dw_locktimer to its own editor,
then the default callback would be added a second time, causing unexpected
and undesired behavior.
This includes the changes from the following commits:
6ef45cc1c69591eb7facf381ef4bcf88e3aaa1c0
6ca947f3ad455df4fca1a3076b174b7b2688bd89
0fff419cc95b9783dd33ab02ffb3bd7806d5fcde
87bed8b672a166d073948bcb4ca49aaa81dc880c
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This removes a lot of reudundant CSS classes in favor of cascading
selectors. Styling isn't done, yet this is just a first step.
Still to do:
* aria labels
* styling the toggle mechanism
* RTL styling
* making sure everything displays correct when no JS is available
* translations may be missing
* refactoring the rest of search.less to make use of LESS features
|
|
|
|
|
| |
This functionality is inspired by what other large search engines are
doing.
|
| |
|
|
|
|
|
| |
This simplifies many aspects. However, it still needs much better
styling.
|
|
|
|
|
|
|
|
|
|
|
| |
This add some search assistance to simple, single-word search queries
which may be restricted to a single namespace.
Further improvements:
* better styling
* trigger events for other plugins
* set namespaces directly from fulltext search results
* some more config options
|
|
|
|
|
|
| |
inside an image tag
If it's already inside an image tag, move the cursor to the end of the current tag.
|
|
|
|
| |
open' mode)
|
| |
|
| |
|
|
|
| |
The check did not work any more. see #1853
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* jqsplit:
Restore smoothness.css using update.sh
allow selecting the preferred CDN and add event
load jquery via https always
split off jquery from other JS and add CDN option #1766
use external version file for jquery updates
removed jQuery.browser calls
replace deprecated bind() calls
replace deprecated delegate() calls
fixed radio options in media manager for new jQ-UI
jQuery Updates
|
| |
| |
| |
| |
| |
| | |
The file had 0 bytes before (starting from
5928c8e71080077bf8d9ed0cbfe33ffa8ca7b904) - probably something went
wrong while executing update.sh.
|
| |
| |
| |
| |
| | |
this also removes the non inified versions and incorporates some updates
the jquery CDN just pushed for jquery-ui
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
jQuery.browser no longer exists in jQuery nor in jQuery migrate. A quick
check in Opera and IE11 suggests that both parts that used it are no
longer needed so they were simply removed.
More browser tests especially for the resize handling in the media manager
are recommended.
|
| |
| |
| |
| |
| | |
The bind() call is deprecated in jQuery 3. This replaces it with
the on() call.
|
| |
| |
| |
| |
| | |
The delegate() call is deprecated in jQuery 3. This replaces it with the
on() call.
|
| |
| |
| |
| |
| | |
jQuery UI replaced the buttonset widget with a controlgroup widget. This
adjusts the JavaScript and styling accordingly.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- jQuery to 3.1.1
- jQuery UI to 1.12.1
- jQuery Migrate to 3.0.0
There are a few warnigs from migrate that have to be fixed. The toggles
in the Media Manager are also missing their proper icons.
|
|\ \
| |/
|/| |
Fix broken JS in xhtml
|
| | |
|
| | |
|
| | |
|
| | |
|
|\ \
| | |
| | | |
upgraded jQuery to 2.2.3
|
| | | |
|
| | | |
|
| |/
| |
| |
| | |
This drops support for Internet Explorer <9 which we no longer support.
|
|\ \
| | |
| | | |
Check if content really changed in the Editor, before popup a warning…
|
| | |
| | |
| | |
| | |
| | | |
checkfunc is mainly replaced by doku_hasTextBeenModified, which is put
in global scope to allow overriding by plugins.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- if #wiki__text (the default DokuWiki editor field) exists, the
checkfunc() checks whether the field content is changed
- if #wiki__text not exists it assumes that on all change and keydown
events the content of the form #dw__editform is changed (give still
false positives.) (for example the Data plugin has none #wiki__text)
|
| | | |
|
| |/
| |
| |
| |
| |
| | |
leaving
Fixes #1199
|
| | |
|
| | |
|
|\ \ |
|
| | | |
|
| |/
| |
| |
| | |
Fixes #1483
|
| | |
|
| |
| |
| |
| | |
The opera work around is still needed though! O_o
|
| |
| |
| |
| | |
Standardized node.textContent is available since IE9
|
| |
| |
| |
| |
| | |
This makes sure the provided callback is using alphanumerics only. I'm
not sure this is needed, but better safe than sorry.
|
| |
| |
| |
| |
| |
| | |
because we actually want it in this branch ;-)
This reverts commit 38a2174b1dd098290d4b853df853c1072369377d.
|