Changeset View
Changeset View
Standalone View
Standalone View
src/lib/DOM.js
| Show First 20 Lines • Show All 885 Lines • ▼ Show 20 Lines | /* -( Testing DOM Properties )--------------------------------------------- */ | ||||
| _getAutoID : function(node) { | _getAutoID : function(node) { | ||||
| if (!node.getAttribute('data-autoid')) { | if (!node.getAttribute('data-autoid')) { | ||||
| node.setAttribute('data-autoid', 'autoid_'+(++JX.DOM._autoid)); | node.setAttribute('data-autoid', 'autoid_'+(++JX.DOM._autoid)); | ||||
| } | } | ||||
| return node.getAttribute('data-autoid'); | return node.getAttribute('data-autoid'); | ||||
| } | } | ||||
| } | } | ||||
| }); | }); | ||||