$rootScope.Scope.$id

$id Unique scope ID (monotonically increasing) useful for debugging.

Guide: Bootstrap

This page explains the Angular initialization process and how you can manually initialize Angular if necessary. Angular Tag This example shows the recommended path for integrating Angular with what we call automatic initialization. <!doctype html> <html xmlns:ng="http://angularjs.org" ng-app> <body> ... <script src="angular.js"></script> </body> </html> Place the script tag at the bottom of the page. Placing script tags at the end of the p

form.FormController

type in module ng FormController keeps track of all its controls and nested forms as well as the state of them, such as being valid/invalid or dirty/pristine. Each form directive creates an instance of FormController. Methods $rollbackViewValue(); Rollback all form controls pending updates to the $modelValue. Updates may be pending by a debounced event or because the input is waiting for a some future event defined in ng-model-options. This method is typically needed by the reset butto

ngFocus

directive in module ng Specify custom behavior on focus event. Note: As the focus event is executed synchronously when calling input.focus() AngularJS executes the expression using scope.$evalAsync if the event is fired during an $apply to ensure a consistent state. Directive Info This directive executes at priority level 0. Usage as attribute: <window, input, select, textarea, a ng-focus="expression"> ... </window, input, select, textarea, a> Arguments Param Type Detail

filter

filter in module ng Selects a subset of items from array and returns it as a new array. Usage In HTML Template Binding {{ filter_expression | filter : expression : comparator}} In JavaScript $filter('filter')(array, expression, comparator) Arguments Param Type Details array Array The source array. expression stringObjectfunction() The predicate to be used for selecting items from array. Can be one of: string: The string is used for matching against the contents of the array.

$controllerProvider.register()

register(name, constructor); Parameters Param Type Details name stringObject Controller name, or an object map of controllers where the keys are the names and the values are the constructors. constructor function()Array Controller constructor fn (optionally decorated with DI annotations in the array notation).

$location.protocol()

protocol(); This method is getter only. Return protocol of current url. // given url http://example.com/#/some/path?foo=bar&baz=xoxo var protocol = $location.protocol(); // => "http" Returns string protocol of current url

$compile.directive.Attributes.$removeClass()

$removeClass(classVal); Removes the CSS class value specified by the classVal parameter from the element. If animations are enabled then an animation will be triggered for the class removal. Parameters Param Type Details classVal string The className value that will be removed from the element

$log.error()

error(); Write an error message

ngSanitize.filter

Name Description linky Finds links in text input and turns them into html links. Supports http/https/ftp/mailto and plain email address links.