Index: trunk/parsers/wikidom/lib/es/es.ListBlock.js |
— | — | @@ -235,10 +235,10 @@ |
236 | 236 | // delete all selected items except first one |
237 | 237 | var deleting = false; |
238 | 238 | for ( var i = 0; i < this.list.items.length; i++ ) { |
239 | | - if ( this.list.items[i] == locationStart.item ) { |
| 239 | + if ( this.list.items[i] === locationStart.item ) { |
240 | 240 | deleting = true; |
241 | 241 | continue; |
242 | | - } else if ( this.list.items[i] == locationEnd.item ) { |
| 242 | + } else if ( this.list.items[i] === locationEnd.item ) { |
243 | 243 | this.list.items[i].list.remove( this.list.items[i] ); |
244 | 244 | break; |
245 | 245 | } |