Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5_fork
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eteri
erp5_fork
Commits
7506c42c
Commit
7506c42c
authored
Jan 07, 2013
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code cleanup.
parent
667cb0a4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
15 deletions
+4
-15
bt5/erp5_xhtml_jquery_style/SkinTemplateItem/portal_skins/erp5_xhtml_jquery_style/erp5.js.xml
...lateItem/portal_skins/erp5_xhtml_jquery_style/erp5.js.xml
+3
-14
bt5/erp5_xhtml_jquery_style/bt/revision
bt5/erp5_xhtml_jquery_style/bt/revision
+1
-1
No files found.
bt5/erp5_xhtml_jquery_style/SkinTemplateItem/portal_skins/erp5_xhtml_jquery_style/erp5.js.xml
View file @
7506c42c
...
...
@@ -164,18 +164,8 @@ function fixLeftRightHeightAndFocus(fix_height) {\n
for (element_index = 0; element_index
< matched_left_element_list.snapshotLength
;
element_index++)
{\n
var
element =
matched_left_element_list.snapshotItem(element_index);\n
var
right =
document.evaluate(right_xpath,
element,
null,
XPathResult.FIRST_ORDERED_NODE_TYPE,
null).singleNodeValue;\n
var
cell;\n
var
row =
$("<tr
>
");\n
var table = $("
<table>
");\n
table.addClass("fake");\n
table.insertBefore(element);\n
cell = $("
<td>
");\n
cell.append(element);\n
row.append(cell[0]);\n
cell = $("
<td>
");\n
cell.append(right);\n
row.append(cell[0]);\n
table.append(row[0]);\n
var
table =
$(\'<table
class=
"fake"
>
\').insertBefore(element);\n
table.append($("
<tr>
").append($("
<td>
").append(element)).append($("
<td>
").append(right)));\n
}\n
}\n
autoFocus();\n
...
...
@@ -379,8 +369,7 @@ if (navigator.userAgent.toLowerCase().indexOf(\'firefox\') != -1)\n
$(document).ready(rewriteIndentedSelect);\n
$(document).ready(resizeIFrameOnLoad);\n
$(document).ready(addOnChangeEventHandler);\n
$(document).ready(indexAllCheckBoxesAtBTInstallationOnLoad);\n
$(document).ready(indexAllCheckBoxesAtBTInstallationOnLoad);
]]>
</string>
</value>
</item>
...
...
bt5/erp5_xhtml_jquery_style/bt/revision
View file @
7506c42c
20
\ No newline at end of file
21
\ No newline at end of file
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