Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
piks3l
Respect My Net
Commits
c10c9f66
Commit
c10c9f66
authored
Jul 04, 2011
by
stef
Browse files
[fix] removed console.log invocation
parent
3a8744af
Changes
1
Hide whitespace changes
Inline
Side-by-side
templates/index.html
View file @
c10c9f66
...
...
@@ -16,13 +16,13 @@ function focushandlers(ed) {
var
realID
=
$
(
'
#
'
+
ed
.
id
+
'
_tbl
'
);
tinymce
.
dom
.
Event
.
add
(
ed
.
getWin
(),
'
focus
'
,
function
(
e
)
{
if
(
$
(
realID
))
{
console
.
log
(
realID
);
//
console.log(realID);
realID
.
parents
(
'
.fieldWrapper
'
).
find
(
'
.help_text
'
).
show
();
}
});
tinymce
.
dom
.
Event
.
add
(
ed
.
getWin
(),
'
blur
'
,
function
(
e
)
{
if
(
$
(
realID
))
{
console
.
log
(
realID
);
//
console.log(realID);
realID
.
parents
(
'
.fieldWrapper
'
).
find
(
'
.help_text
'
).
hide
();
}
});
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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