Documentation ¶
Index ¶
- Variables
- func App(module string) types.Attribute
- func Bind(expr string) types.Attribute
- func BindHtml(expr string) types.Attribute
- func BindTemplate(s string) types.Attribute
- func Blur(expr string) types.Attribute
- func Change(expr string) types.Attribute
- func Checked(expr string) types.Attribute
- func Class(expr string) types.Attribute
- func ClassEven(expr string) types.Attribute
- func ClassOdd(expr string) types.Attribute
- func Click(expr string) types.Attribute
- func Cloak() types.Attribute
- func Controller(expr string) types.Attribute
- func Copy(expr string) types.Attribute
- func Csp(expr string) types.Attribute
- func Cut(expr string) types.Attribute
- func Dblclick(expr string) types.Attribute
- func Disabled(expr string) types.Attribute
- func Focus(expr string) types.Attribute
- func Form(s string) types.Attribute
- func Hide(expr string) types.Attribute
- func Href(template string) types.Attribute
- func If(expr string) types.Attribute
- func Include(s string) types.Attribute
- func Init(expr string) types.Attribute
- func Keydown(expr string) types.Attribute
- func Keypress(expr string) types.Attribute
- func Keyup(expr string) types.Attribute
- func List(s string) types.Attribute
- func Model(s string) types.Attribute
- func Mousedown(expr string) types.Attribute
- func Mouseenter(expr string) types.Attribute
- func Mouseleave(expr string) types.Attribute
- func Mousemove(expr string) types.Attribute
- func Mouseover(expr string) types.Attribute
- func Mouseup(expr string) types.Attribute
- func NonBindable() types.Attribute
- func Open(expr string) types.Attribute
- func Paste(expr string) types.Attribute
- func Readonly(expr string) types.Attribute
- func Repeat(tempVar string, collection string) types.Attribute
- func RepeatEnd() types.Attribute
- func RepeatKeyVal(tempKey string, tempVal string, collection string) types.Attribute
- func RepeatStart(tempVar string, collection string) types.Attribute
- func RepeatStartKeyVal(tempKey string, tempVal string, collection string) types.Attribute
- func RepeatStartTrackBy(tempVar, collection, trackBy string) types.Attribute
- func RepeatTrackBy(tempVar, collection, trackBy string) types.Attribute
- func Script(id string, elem *element.Element) types.HTMLString
- func Selected(expr string) types.Attribute
- func Show(expr string) types.Attribute
- func Src(template string) types.Attribute
- func SrcSet(template string) types.Attribute
- func Style(expr string) types.Attribute
- func Submit(expr string) types.Attribute
- func Switch(expr string) types.Attribute
- func SwitchDefault() types.Attribute
- func SwitchWhen(s string) types.Attribute
- func Transclude() types.Attribute
- func Value(s string) types.Attribute
- type Decorator
- type OptionsArray
- type OptionsObject
- type Pluralize
Constants ¶
This section is empty.
Variables ¶
View Source
var ANGULAR_VERSION = "1.2.2"
Functions ¶
func Controller ¶
func Mouseenter ¶
func Mouseleave ¶
func NonBindable ¶
func RepeatKeyVal ¶
func RepeatStartKeyVal ¶
func RepeatStartTrackBy ¶
func RepeatTrackBy ¶
func SwitchDefault ¶
func SwitchWhen ¶
func Transclude ¶
Types ¶
type Decorator ¶
type Decorator struct { Model string // ng-model="{string}" Required string // ng-required MinLength int // ng-minlength MaxLength int // ng-maxlength Pattern string // ng-pattern Change string // ng-change True string // ng-true-value False string // ng-false-value NoTrim bool // ng-trim="{boolean}" OptionsArray *OptionsArray // ng-options="{comprehension_expression}" OptionsObject *OptionsObject // ng-options="{comprehension_expression}" }
func (Decorator) AttrString ¶
type OptionsArray ¶
type OptionsArray struct { Array string // Array / object: an expression which evaluates to an Array / object to iterate over. Value string // Value: local variable which will refer to each item in the Array or each property Value of object during iteration. Label string // Label: The result of this expression will be the Label for <option> element. The expression will most likely refer to the Value variable (e.g. Value.propertyName). Select string // select: The result of this expression will be bound to the model of the parent <select> element. If not specified, select expression will default to Value. Group string // group: The result of this expression will be used to group options using the <optgroup> DOM element. TrackExpr string // trackexpr: Used when working with an Array of objects. The result of this expression will be used to identify the objects in the Array. The trackexpr will most likely refer to the Value variable (e.g. Value.propertyName). }
func (OptionsArray) String ¶
func (s OptionsArray) String() string
type OptionsObject ¶
type OptionsObject struct { Object string // Array / object: an expression which evaluates to an Array / object to iterate over. Value string // Value: local variable which will refer to each item in the Array or each property Value of object during iteration. Key string // key: local variable which will refer to a property name in object during iteration. Label string // Label: The result of this expression will be the Label for <option> element. The expression will most likely refer to the Value variable (e.g. Value.propertyName). Select string // select: The result of this expression will be bound to the model of the parent <select> element. If not specified, select expression will default to Value. Group string // group: The result of this expression will be used to group options using the <optgroup> DOM element. }
func (OptionsObject) String ¶
func (s OptionsObject) String() string
Click to show internal directories.
Click to hide internal directories.