mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
Fix jslint errors due to strict checking of loop variables
This commit is contained in:
parent
ec6f9d36b4
commit
0a40cd084e
3 changed files with 3 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ function doFillWidgetVars() {
|
|||
// IE7에서 발생하는 jQuery 용 attribute를 걸러내기 위해 추가
|
||||
var attrFilters = ['style', 'sizset', 'draggable', 'class'];
|
||||
|
||||
for(i = 0; i < attrs.length ; i++){
|
||||
for(var i = 0; i < attrs.length ; i++){
|
||||
var name = attrs[i].name;
|
||||
var value = jQuery(selected_node).attr(name);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue