Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
b2dfd0e4
Commit
b2dfd0e4
authored
Mar 03, 2015
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing pager Javascript
parent
f0ab4668
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
49 deletions
+47
-49
kernel.js
html/kernel.js
+47
-49
No files found.
html/kernel.js
View file @
b2dfd0e4
...
@@ -10,7 +10,6 @@ define(['require',
...
@@ -10,7 +10,6 @@ define(['require',
var
onload
=
function
(){
var
onload
=
function
(){
console
.
log
(
'Kernel haskell kernel.js is loading.'
);
console
.
log
(
'Kernel haskell kernel.js is loading.'
);
events
.
on
(
'app_initialized.NotebookApp'
,
function
(){
// add here logic that shoudl be run once per **page load**
// add here logic that shoudl be run once per **page load**
// like adding specific UI, or changing the default value
// like adding specific UI, or changing the default value
// of codecell highlight.
// of codecell highlight.
...
@@ -57,7 +56,6 @@ define(['require',
...
@@ -57,7 +56,6 @@ define(['require',
IPython
.
Pager
.
prototype
.
append_text
=
function
(
text
)
{
IPython
.
Pager
.
prototype
.
append_text
=
function
(
text
)
{
this
.
pager_element
.
find
(
".container"
).
append
(
$
(
'<div/>'
).
html
(
IPython
.
utils
.
autoLinkUrls
(
text
)));
this
.
pager_element
.
find
(
".container"
).
append
(
$
(
'<div/>'
).
html
(
IPython
.
utils
.
autoLinkUrls
(
text
)));
};
};
});
events
.
on
(
'shell_reply.Kernel'
,
function
()
{
events
.
on
(
'shell_reply.Kernel'
,
function
()
{
// Add logic here that should be run once per reply.
// Add logic here that should be run once per reply.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment