Object

io.scalajs.npm.angularjs

angular

Related Doc: package angularjs

Permalink

object angular extends Object with Angular

Singleton "angular" instance

Annotations
@native() @JSName( "angular" )
Linear Supertypes
Angular, Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. angular
  2. Angular
  3. Object
  4. Any
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def bind(self: Object, fn: Function): Function

    Permalink

    Definition Classes
    Angular
    See also

    #bind(js.Object, js.Function, js.Array)

  6. def bind(self: Object, fn: Function, args: Array[Any]): Function

    Permalink

    Returns a function which calls function fn bound to self (self becomes the this for fn).

    Returns a function which calls function fn bound to self (self becomes the this for fn). You can supply optional args that are prebound to the function. This feature is also known as partial application, as distinguished from function currying.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.bind

  7. def bootstrap(element: JQuery, modules: String, config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  8. def bootstrap(element: JQuery, modules: String): Injector

    Permalink
    Definition Classes
    Angular
  9. def bootstrap(element: JQuery, modules: Array[Any], config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  10. def bootstrap(element: JQuery, modules: Array[Any]): Injector

    Permalink
    Definition Classes
    Angular
  11. def bootstrap(element: JQLite, modules: String, config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  12. def bootstrap(element: JQLite, modules: String): Injector

    Permalink
    Definition Classes
    Angular
  13. def bootstrap(element: JQLite, modules: Array[Any], config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  14. def bootstrap(element: JQLite, modules: Array[Any]): Injector

    Permalink
    Definition Classes
    Angular
  15. def bootstrap(element: Document, modules: String, config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  16. def bootstrap(element: Document, modules: String): Injector

    Permalink
    Definition Classes
    Angular
  17. def bootstrap(element: Document, modules: Array[Any], config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  18. def bootstrap(element: Document, modules: Array[Any]): Injector

    Permalink
    Definition Classes
    Angular
  19. def bootstrap(element: Element, modules: String, config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  20. def bootstrap(element: Element, modules: String): Injector

    Permalink
    Definition Classes
    Angular
  21. def bootstrap(element: Element, modules: Array[Any], config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  22. def bootstrap(element: Element, modules: Array[Any]): Injector

    Permalink
    Definition Classes
    Angular
  23. def bootstrap(element: String, modules: String, config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  24. def bootstrap(element: String, modules: String): Injector

    Permalink
    Definition Classes
    Angular
  25. def bootstrap(element: String, modules: Array[Any], config: AngularConfiguration): Injector

    Permalink
    Definition Classes
    Angular
  26. def bootstrap(element: String, modules: Array[Any]): Injector

    Permalink
    Definition Classes
    Angular
  27. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. def copy(source: Any, destination: Any): Any

    Permalink
    Definition Classes
    Angular
  29. def copy(source: Any): Any

    Permalink

    Creates a deep copy of source, which should be an object or an array.

    Creates a deep copy of source, which should be an object or an array. If no destination is supplied, a copy of the object or array is created. If a destination is provided, all of its elements (for arrays) or properties (for objects) are deleted and then all elements/properties from the source are copied to it. If source is not an object or array (inc. null and undefined), source is returned. If source is identical to 'destination' an exception will be thrown.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.copy

  30. def element(elem: |[Element, String]): JQLite

    Permalink
    Definition Classes
    Angular
  31. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. def equals(o1: Any, o2: Any): Boolean

    Permalink

    Determines if two objects or two values are equivalent.

    Determines if two objects or two values are equivalent. Supports value types, regular expressions, arrays and objects. Two objects or values are considered equivalent if at least one of the following is true:

    • Both objects or values pass === comparison.
    • Both objects or values are of the same type and all of their properties are equal by comparing them with angular.equals.
    • Both values are NaN. (In JavaScript, NaN == NaN => false. But we consider two NaN as equal)
    • Both values represent the same regular expression (In JavaScript, /abc/ == /abc/ => false. But we consider two regular expressions as equal when their textual representation matches).

    During a property comparison, properties of function type and properties with names that begin with $ are ignored.

    Scope and DOMWindow objects are being compared only by identify (===).

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.equals

  33. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  34. def extend[T](dst: Any, src: Any): T

    Permalink

    Extends the destination object dst by copying own enumerable properties from the src object(s) to dst.

    Extends the destination object dst by copying own enumerable properties from the src object(s) to dst. You can specify multiple src objects. If you want to preserve original objects, you can do so by passing an empty object as the target: var object = angular.extend({}, object1, object2).

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.extend

  35. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  36. def forEach(obj: Any, iterator: Function, context: Any): Unit

    Permalink

    Invokes the iterator function once for each item in obj collection, which can be either an object or an array.

    Invokes the iterator function once for each item in obj collection, which can be either an object or an array. The iterator function is invoked with iterator(value, key, obj), where value is the value of an object property or an array element, key is the object property key or array element index and obj is the obj itself. Specifying a context for the function is optional.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.forEach

  37. def forEach(obj: Any, iterator: Function): Unit

    Permalink

    Invokes the iterator function once for each item in obj collection, which can be either an object or an array.

    Invokes the iterator function once for each item in obj collection, which can be either an object or an array. The iterator function is invoked with iterator(value, key, obj), where value is the value of an object property or an array element, key is the object property key or array element index and obj is the obj itself. Specifying a context for the function is optional.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.forEach

  38. def fromJson[T](s: String): T

    Permalink

    Deserializes a JSON string.

    Deserializes a JSON string.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.fromJson

  39. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  40. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  41. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  42. def identity(value: Any): Any

    Permalink

    A function that returns its first argument.

    A function that returns its first argument. This function is useful when writing code in the functional style.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.identity

  43. def injector(modules: Array[Any], strictDi: Boolean = false): Injector

    Permalink

    Creates an injector object that can be used for retrieving services as well as for dependency injection.

    Creates an injector object that can be used for retrieving services as well as for dependency injection.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.injector

  44. def isArray(value: Any): Boolean

    Permalink

    Determines if a reference is an Array.

    Determines if a reference is an Array.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isArray

  45. def isDate(value: Any): Boolean

    Permalink

    Determines if a value is a date.

    Determines if a value is a date.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isDate

  46. def isDefined(value: Any): Boolean

    Permalink

    Determines if a reference is defined.

    Determines if a reference is defined.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isDefined

  47. def isElement(value: Any): Boolean

    Permalink

    Determines if a reference is a DOM element (or wrapped jQuery element).

    Determines if a reference is a DOM element (or wrapped jQuery element).

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isElement

  48. def isFunction(value: Any): Boolean

    Permalink

    Determines if a reference is a Function.

    Determines if a reference is a Function.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isFunction

  49. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  50. def isNumber(value: Any): Boolean

    Permalink

    Determines if a reference is a Number.

    Determines if a reference is a Number.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isNumber

  51. def isObject(value: Any): Boolean

    Permalink

    Determines if a reference is an Object.

    Determines if a reference is an Object. Unlike typeof in JavaScript, nulls are not considered to be objects. Note that JavaScript arrays are objects.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isObject

  52. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  53. def isString(value: Any): Boolean

    Permalink

    Determines if a reference is a String.

    Determines if a reference is a String.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isString

  54. def isUndefined(value: Any): Boolean

    Permalink

    Determines if a reference is undefined.

    Determines if a reference is undefined.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.isUndefined

  55. def lowercase(s: String): String

    Permalink

    Converts the specified string to lowercase

    Converts the specified string to lowercase

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.lowercase

  56. def merge(dst: Object, src: Object): Object

    Permalink

    Deeply extends the destination object dst by copying own enumerable properties from the src object(s) to dst.

    Deeply extends the destination object dst by copying own enumerable properties from the src object(s) to dst. You can specify multiple src objects. If you want to preserve original objects, you can do so by passing an empty object as the target: var object = angular.merge({}, object1, object2).

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.merge

  57. def module(name: String, dependencies: Array[String], configFn: Array[Any]): Module

    Permalink
    Definition Classes
    Angular
  58. def module(name: String, dependencies: Array[String]): Module

    Permalink
    Definition Classes
    Angular
  59. def module(name: String): UndefOr[Module]

    Permalink
    Definition Classes
    Angular
  60. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  61. def noop(): Unit

    Permalink

    A function that performs no operations.

    A function that performs no operations. This function can be useful when writing code in the functional style.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.noop

  62. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  63. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  64. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  65. def reloadWithDebugInfo(): Unit

    Permalink

    Use this function to reload the current application with debug information turned on.

    Use this function to reload the current application with debug information turned on. This takes precedence over a call to $compileProvider.debugInfoEnabled(false)

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.reloadWithDebugInfo

  66. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  67. def toJson(obj: Any, pretty: Boolean = false): String

    Permalink

    Serializes input into a JSON-formatted string.

    Serializes input into a JSON-formatted string. Properties with leading $$ characters will be stripped since angular uses this notation internally.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.toJson

  68. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  69. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  70. def uppercase(string: String): String

    Permalink

    Converts the specified string to uppercase.

    Converts the specified string to uppercase.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/function/angular.uppercase

  71. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  72. def version(): AngularVersion

    Permalink

    An object that contains information about the current AngularJS version.

    An object that contains information about the current AngularJS version.

    Definition Classes
    Angular
    See also

    https://docs.angularjs.org/api/ng/object/angular.version

  73. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  74. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  75. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Angular

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped