Min RK
8c3b6d79d0
autosave & reload on kernelspec switch
...
when a custom kernel.js was defined,
in which case reload is needed to ensure clean js state.
11 years ago
Thomas Kluyver
ad3dd60b3f
Merge pull request #8191 from minrk/focus-3.1
...
small focus/keyboard-related fixes for 3.1
11 years ago
Min RK
effbd91b77
directly blur codemirror to trigger command-mode
...
rather than focusing the cell, which implies codemirror blur
11 years ago
Min RK
581d6ca158
don't focus cell on save
11 years ago
Min RK
28268d9d0f
don't disable keyboard shortcuts on main toolbar
...
disable them on specific select elements
11 years ago
Min RK
1f0f8c4d57
remove extraneous focus_cell from actions.js
11 years ago
Matthias Bussonnier
bceab630e7
Merge pull request #8062 from minrk/max-width-again
...
another stab at confining images to page width
11 years ago
Min RK
1f8cccbecc
update description of sticky tooltip
...
> Tooltip will linger for 10 seconds while you type
11 years ago
Min RK
0e6aa1b2fb
scroll overflow-x on rendered markdown
...
treat markdown the same as output
11 years ago
Min RK
c52b70561c
dblclick to unconfine on images in html output
11 years ago
Min RK
dd41d9fd5c
calc max-width for Firefox
...
account for prompt width
11 years ago
Min RK
597208a50a
set max-width on output_subarea
...
for Firefox
11 years ago
Min RK
4efc68542d
another stab at confining images to page width
...
- double-click toggles 'raw' size for large image output
- uses max-width on both markdown and output images
- `height: auto` fixes aspect ratio problems caused by using max-width alone
- img.unconfined disables max-width confinement
11 years ago
Matthias Bussonnier
38585a1257
Merge pull request #8174 from minrk/notification-pad
...
add 4px between notification areas
11 years ago
Min RK
2f2a0fcbcb
Merge pull request #8176 from gilbertw/master
...
Fixes bug that would show "null" as the reason in the don't leave dialog
11 years ago
Min RK
7673c151a3
Merge pull request #8159 from Carreau/no-action-icon
...
Fix action do not provide icon.
11 years ago
RickWinter
81a912fbb9
Fixes bug that would show "null" as a message in the don't leave dialog
11 years ago
Min RK
b424166841
add 4px between notification areas
11 years ago
Min RK
4ab4ee120e
Merge pull request #8164 from Carreau/open-window
...
replace undefined by empty string to get aroung bug in ie
11 years ago
Min RK
52bd09952a
Merge pull request #7718 from jdfreder/widecontents
...
Disable output contents from overflowing page width.
11 years ago
Matthias Bussonnier
7d90525799
replace undefined by empty string to get aroung bug in ie
11 years ago
Matthias Bussonnier
9c085a9273
Fix action do not provide icon.
...
action might be undefined then button will get no icon.
Prevent throwing an uncatched error and insert warning sign on button
Will do better one I allow text instead of icon
11 years ago
Thomas Kluyver
182639b05e
Merge pull request #8127 from minrk/rename-last-modified
...
update last_modified on rename
11 years ago
Min RK
8454ae087b
update last_modified on rename
...
some storage backends may update the last_modified date on rename
11 years ago
Robert Smith
e539734f5a
Remove image resizer.
11 years ago
Min RK
63f120db45
set z-index on output_wrapper
...
avoids scrolled output overlaying input in some strange circumstances
11 years ago
Matthias Bussonnier
bfc45392f8
remove Stray .c
11 years ago
Matthias Bussonnier
025ec6df77
Rename local variable to avoid confusion.
11 years ago
Matthias Bussonnier
63a4a764f2
Merge codemirror config with user config.
...
Simplify customisation of codemirror without duplicating the all
codecell configuration.
Closes #8038
11 years ago
Min RK
3a21271d7e
Merge pull request #7926 from Carreau/config-3.1
...
Fix configurability of codecell
11 years ago
Matthias Bussonnier
0408e7e4e4
Fix save switch to command mode after shortcut
...
When triggering actions with button one have to refocus the notebook
cell. Though with keyboard shortcut, you don't want cell to switch to
command mode.
11 years ago
Matthias Bussonnier
75fe862814
remove private methods
11 years ago
Min RK
a89e800e18
trigger save before copy if there are unsaved changes.
...
just like we do before downloading
11 years ago
Matthias Bussonnier
afd74fbb94
Refocus notebook after click on save
...
closes #7963
11 years ago
Matthias Bussonnier
103f2f1df2
Update comment for future removal of code
11 years ago
Matthias Bussonnier
ed60311a75
Fix configurability of codecell
...
code cell where actually not configurable,
this fixes that + add a convenient methods to dump the
content of the configuration in the config file.
this also close #7896 by defaulting closebracket to true,
which is now configurable :-)
It also switches the default magic highlight mode to string so that they
could also be configured.
11 years ago
Matthias Bussonnier
242fc93f93
Merge pull request #7889 from Carreau/after-one-year
...
Js completion traceback, erase line on tab, and double complete.
11 years ago
Matthias Bussonnier
de90843b29
Merge pull request #7893 from Carreau/add-markdown-menu
...
Add Markdown to the list of downloadable nbconverted formats.
11 years ago
Matthias Bussonnier
4c567fb544
Merge pull request #7779 from abeguerra/defect-5544-fix-hyperlink-display
...
Fixed rendering of URL in append_stream function
11 years ago
Matthias Bussonnier
59cab4c2d8
Add Markdown to the list of downloadable nbconverted formats.
...
Seem it was just forgotten. The list was not auto generated on purpose
IIRC, as some format, like TeX were deemed not useful in menu.
11 years ago
Matthias Bussonnier
a30b9b9446
Fix #4777 and #7887
...
The function in charge of actually converting cursor offset to
CodeMirror line number and character number was actually crashing when
the cursor was at the last character (loop until undefined, then access
length of variable, which is undefined).
This was hiding a bug in which when you would completer to a single
completion pressing tab after as-you-type filtering, the completion
would be completed twice.
The logic that was supposed to detect whether or not all completions had
a common prefix was actually faulty as the common prefix used to be a
string but was then changed to an object. Hence the logic to check
whether or not there was actually a common prefix was always true, even
for empty string, leading to the deletion of the line (replace by '') in
some cases.
11 years ago
Matthias Bussonnier
230ea32f0d
Dont recompute values
11 years ago
Thomas Kluyver
6272522a5a
Revert "Prevent image outputs from being wider than their container."
11 years ago
Kyle Kelley
720e0d1ef7
Merge pull request #7811 from abalkin/patch-2
...
Update actions.js
11 years ago
abalkin
3a6c634f3e
Update actions.js
...
Added help for select- actions.
11 years ago
abalkin
6e5ef91f5a
Update actions.js
...
Clarified "delete-cell" action.
11 years ago
abalkin
25a1d9e2f6
Update actions.js
...
See issue #7807 .
11 years ago
abalkin
64de4432a6
Update quickhelp.js
11 years ago
abalkin
66f6818e42
Update quickhelp.js
11 years ago
abalkin
433dea8215
Update quickhelp.js
...
Use left/right instead of before/after.
11 years ago