Thomas Kluyver
9790e43997
Merge pull request #7605 from minrk/f-the-pager
...
fix the pager and tooltip locations
11 years ago
Min RK
c77e94a8e6
more fixes for locating tooltip
...
use local measurements instead of page-global locations,
which are wrong now that different elements are scrolled.
11 years ago
Thomas Kluyver
d7f1166005
Merge pull request #7454 from minrk/project_name
...
add language name to kernelspec
11 years ago
Min RK
e1c8de79dd
Merge pull request #7606 from Carreau/date-now
...
Date now
11 years ago
Matthias Bussonnier
729b0922b1
Parse Date with moment.js or Because Date(str) return Now()
...
Also so relative date in confirmation dialog because It's easier to
parse mentally.
Closes #7535
11 years ago
Matthias Bussonnier
e558e1aeb8
refactor imports
11 years ago
Min RK
a1e4775487
fix tooltip location
...
put it inside `#site`, so it scrolls with the notebook
11 years ago
Min RK
e18a502484
"fix" the pager
...
- pull the pager element out of `#site`
- fix top to `auto` instead of `inherit`
11 years ago
Min RK
089973920b
use one-off notification widget for match notification
...
when no exact match, and only one kernel matches language
11 years ago
Min RK
abf27c1ddf
"Continue without kernel" button
11 years ago
Min RK
e67df0526a
use Array.map
11 years ago
Min RK
89bb88bf6e
s/language_name/language/
11 years ago
Min RK
3a20b9928b
add "No appropriate kernel" button to kernel-selection prompt
11 years ago
Min RK
f5e2bb712d
replace project_name with language_name
...
- automatically choose language match, if only one
- only list language matches in select dialog
- list all kernels if no language match
11 years ago
Min RK
e514d930cf
handle missing kernel
...
- if project_name matches, pick another kernel
- if no match, show dialog with kernel selector
11 years ago
Min RK
6bf7f1ab43
add project_name to kernelspec
...
this should be the same for compatible kernels ('ipython', 'ijulia', etc.)
11 years ago
Min RK
f52ecf1beb
warn on clobber of notebooks
...
check last_modified before saving. If it's changed, confirm overwrite.
11 years ago
Min RK
1eddad8a63
Merge pull request #7578 from Carreau/moreerrors
...
Catch and/or log a bit more errors.
11 years ago
Thomas Kluyver
a788c02ea3
Merge pull request #7599 from minrk/modal-double-border
...
remove duplicated border in indicator area
11 years ago
Min RK
54bce1c423
remove duplicated border in indicator area
11 years ago
Min RK
a7e72f8b80
don't execute empty cells
...
reorder execute a little, so that clearing old state all happens before setting new state
11 years ago
Thomas Kluyver
708088d74a
Merge pull request #7586 from Carreau/notif-editor
...
re-hook notification area for editor.
11 years ago
Peter Parente
91740ace4a
Fix initial scroll overflow with padding (from @joelkim)
11 years ago
Bussonnier Matthias
0118cfbd48
re-hook notification area for editor.
...
- re-order element to be the same as in notebook,
- rename events correctly.
- Add event on savign to show that save is in progress, that get
dismissed on file save
Closes #7569
11 years ago
damianavila
1b520328d6
Fix the hidden x scrolling.
11 years ago
Bussonnier Matthias
ab8290ae95
Catch and/or log a bit more errors.
11 years ago
Matthias Bussonnier
730c0b8822
Merge pull request #7522 from minrk/store-scroll
...
remember and persist manual scroll state.
11 years ago
Matthias Bussonnier
f5cbbd591f
Merge pull request #7565 from minrk/missing-focusout
...
enable keyboard manager when codemirror is focused
11 years ago
Min RK
83ce71aa53
Merge pull request #7551 from Carreau/xxs
...
fix left-margin on xxs screen
11 years ago
Min RK
d4eb36ea02
Merge pull request #7557 from minrk/different-resize
...
don't use flexbox to size `#site`
11 years ago
Min RK
d8ccd5e39b
Merge pull request #7473 from Carreau/no-pager-jump
...
Smooth notebook scrolling on pager closing.
11 years ago
Min RK
525c16d721
hook up ScrollManager to #site
11 years ago
Bussonnier Matthias
c81ae8762e
fix left-margin on xxs screen
11 years ago
Min RK
11a9feb25f
enable keyboard manager when codemirror is focused
...
This should always be true, and mitigate focus-related keyboard bugs, such as #7555 .
11 years ago
Min RK
67e5303614
Merge pull request #7521 from amcdawes/i7322
...
change keyboard help to use `esc` and adds key symbol table
closes #7322
11 years ago
Min RK
315fb1528e
remove inappropriate negative margin on menubar
...
caused 1px mismatch between header background and menubar
when toolbar is hidden.
11 years ago
Min RK
5dfece0a2a
Merge pull request #7514 from minrk/border-markdown
...
add border to rendered markdown with cell toolbar
11 years ago
Min RK
3d96dfc6fb
Merge pull request #7523 from jdfreder/outputwidgetfix
...
Fix the output widget
11 years ago
Andrew Dawes
98e77906e4
removed tab backward
11 years ago
Thomas Kluyver
306ced6ac7
Merge pull request #7541 from minrk/no-no-default
...
remove preventDefault on menubar
11 years ago
Min RK
76624b9a93
remove preventDefault on menubar
...
no longer needed after removing fixed header
11 years ago
Andrew Dawes
8ed28bf57d
cleaned up new function and removed comments
11 years ago
Andrew Dawes
09818e6b02
working function to build modifier key list
11 years ago
Jonathan Frederic
39b99340ed
Finished changing output widget logic.
11 years ago
Min RK
ab221f09f9
toggle scroll from auto based on current scroll
...
rather than always `false`
11 years ago
Min RK
66450cf2b3
allow users to set scroll state
...
and persist that state in metadata.
When user toggles the scroll state,
the choice is remembered and persisted.
There are three states:
- 'auto' (default, only state in master)
- true (always scroll if above minimum_scroll_threshold)
- false (never scroll)
true or false is persisted in cell.metadata.scrolled.
"auto" may be persisted, but isn't currently because it's the default state.
11 years ago
Andrew Dawes
1a10511143
new function build_key_names to automate
11 years ago
Andrew Dawes
471c1c9bba
layout key modifiers in alert-warning box
11 years ago
Andrew Dawes
f37edd7eef
rough draft of formatting
11 years ago
Andrew Dawes
c011dd9bfd
first shot at adding list of key symbols, need to format nicely
11 years ago