propertyPrefix property

String propertyPrefix

Prefix as used for JS property names.

Implementation

String get propertyPrefix {
  var prefix = _cachedPropertyPrefix;
  if (prefix != null) return prefix;
  if (isFirefox) {
    prefix = 'moz';
  } else if (isIE) {
    prefix = 'ms';
  } else if (isOpera) {
    prefix = 'o';
  } else {
    prefix = 'webkit';
  }
  return _cachedPropertyPrefix = prefix;
}