source: frontend/node_modules/underscore/amd/uniqueId.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 283 bytes
Line 
1define(function () {
2
3 // Generate a unique integer id (unique within the entire client session).
4 // Useful for temporary DOM ids.
5 var idCounter = 0;
6 function uniqueId(prefix) {
7 var id = ++idCounter + '';
8 return prefix ? prefix + id : id;
9 }
10
11 return uniqueId;
12
13});
Note: See TracBrowser for help on using the repository browser.