Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
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
Sebastian
erp5
Commits
40d9891d
Commit
40d9891d
authored
Jun 20, 2013
by
Yusei Tahara
Committed by
Arnaud Fontaine
Jun 21, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
P-S: Fix erp5.js to keep it compatible with jquery 1.4.
.prop() is available after jquery 1.6.
parent
578f654f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
8 deletions
+11
-8
product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml
...kinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml
+6
-6
product/ERP5/bootstrap/erp5_xhtml_style/bt/change_log
product/ERP5/bootstrap/erp5_xhtml_style/bt/change_log
+4
-1
product/ERP5/bootstrap/erp5_xhtml_style/bt/revision
product/ERP5/bootstrap/erp5_xhtml_style/bt/revision
+1
-1
No files found.
product/ERP5/bootstrap/erp5_xhtml_style/SkinTemplateItem/portal_skins/erp5_xhtml_style/erp5.js.xml
View file @
40d9891d
...
...
@@ -252,11 +252,11 @@ var addOnChangeEventHandler = function() {\n
$("#master div").each(function(i) {\n
if ($(this).attr("class") == "input") {\n
$(this).children().each(function() {\n
if ($(this).
prop
("tagName") == "INPUT" ||\n
$(this).
prop
("tagName") == "SELECT" ||\n
$(this).
prop
("tagName") == "TEXTAREA") {\n
if ($(this).
attr
("tagName") == "INPUT" ||\n
$(this).
attr
("tagName") == "SELECT" ||\n
$(this).
attr
("tagName") == "TEXTAREA") {\n
if ($(this).val() == "update..." ||\n
($(this).
prop
("tagName") == "INPUT"
&&
\n
($(this).
attr
("tagName") == "INPUT"
&&
\n
$(this).attr("type") == \'submit\')) {\n
// this is a relation field wheel or a submit form button\n
this.onclick = function() { changed = false;};\n
...
...
@@ -267,7 +267,7 @@ var addOnChangeEventHandler = function() {\n
}\n
} \n
/* Listbox or MatrixBox */\n
if ($(this).
prop
("tagName") == "DIV"
&&
(\n
if ($(this).
attr
("tagName") == "DIV"
&&
(\n
$(this).attr("class") == "listbox-container" ||\n
$(this).attr("class") == "MatrixContent")) {\n
$(this).find(\'td\').each(function(){\n
...
...
@@ -295,7 +295,7 @@ var rewriteIndentedSelect = function() {\n
\n
$("#master select").each(function() {\n
$(this).children().each(function() {\n
if ($(this).
prop
("tagName") != "OPTION") {\n
if ($(this).
attr
("tagName") != "OPTION") {\n
return non-false;\n
}\n
text = $(this).html();\n
...
...
product/ERP5/bootstrap/erp5_xhtml_style/bt/change_log
View file @
40d9891d
2013-6-20 yusei
* Fix erp5.js to keep it compatible with jquery 1.4. .prop() is available after jquery 1.6.
2012-10-16 yusei
* Improve error handling on Workflow_statusModify. If divergence is solved by other user, then show a nice message.
...
...
product/ERP5/bootstrap/erp5_xhtml_style/bt/revision
View file @
40d9891d
1100
\ No newline at end of file
1101
\ 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