Changeset 590 for trunk/js


Ignore:
Timestamp:
Mar 18, 2017 12:36:17 PM (7 years ago)
Author:
anonymous
Message:

Minor fixes. Increment version to 2.2.0-5.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/js/Utilities.js

    r552 r590  
    2222
    2323/*
    24 * Emulates a sprintf function.
     24Emulates a sprintf function. Placeholders are {1}
{N}.
     25Some versions of this function were zero-indexed; this one is not.
    2526---------------------------------------------------------------------
    26 "{0} is dead, but {1} is alive! {0} {2}".format("ASP", "ASP.NET")
     27"{1} is dead, but {2} is alive! {1} {3}".format("ASP", "ASP.NET")
    2728
    2829outputs
    2930
    30 ASP is dead, but ASP.NET is alive! ASP {2}
     31ASP is dead, but ASP.NET is alive! ASP {3}
    3132---------------------------------------------------------------------
    3233*
Note: See TracChangeset for help on using the changeset viewer.