aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/anchor.reel
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-03 22:53:07 -0700
committerValerio Virgillito2012-05-03 22:53:07 -0700
commit24b483db367291b72170f969de78efcb1a9b95bd (patch)
treea691a7803cefbfa76a6331a50cbeebcd16287d91 /node_modules/montage/ui/anchor.reel
parentdc93269cfa7c315d22d85c8217e2412749643f28 (diff)
downloadninja-24b483db367291b72170f969de78efcb1a9b95bd.tar.gz
integrating the latest montage version
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/anchor.reel')
-rw-r--r--node_modules/montage/ui/anchor.reel/anchor.js78
1 files changed, 66 insertions, 12 deletions
diff --git a/node_modules/montage/ui/anchor.reel/anchor.js b/node_modules/montage/ui/anchor.reel/anchor.js
index d8ac1d8f..2c12684b 100644
--- a/node_modules/montage/ui/anchor.reel/anchor.js
+++ b/node_modules/montage/ui/anchor.reel/anchor.js
@@ -3,24 +3,78 @@
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> 3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. 4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */ 5 </copyright> */
6
7/**
8 @module "montage/ui/anchor.reel"
9 @requires montage/core/core
10 @requires montage/ui/native-control
11*/
6var Montage = require("montage").Montage, 12var Montage = require("montage").Montage,
7 Component = require("ui/component").Component, 13 Component = require("ui/component").Component,
8 NativeControl = require("ui/native-control").NativeControl; 14 NativeControl = require("ui/native-control").NativeControl;
9
10/** 15/**
11 * The <a> native control with binding support for the standard attributes 16 The Anchor component wraps a native <code>&lt;a&gt;</code> element and exposes its standard attributes as bindable properties.
12 */ 17 @class module:"montage/ui/anchor.reel".Anchor
18 @extends module:montage/native-control.NativeControl
19
20*/
13var Anchor = exports.Anchor = Montage.create(NativeControl, { 21var Anchor = exports.Anchor = Montage.create(NativeControl, {
14 22
23 // HTMLAnchorElement methods
24
25 blur: { value: function() { this._element.blur(); } },
26 focus: { value: function() { this._element.focus(); } }
27
15}); 28});
16 29
17http://www.w3.org/TR/html5/text-level-semantics.html#the-a-element 30Anchor.addAttributes( /** @lends module:"montage/ui/anchor.reel".Anchor# */ {
18Anchor.addAttributes({ 31
19 textContent: null, 32/**
20 href: null, 33 The text displayed by the link.
21 hreflang: null, 34 @type string
22 media: null, 35 @default null
23 rel: null, 36*/
24 target: null, 37 textContent: null,
25 type: null 38
39/**
40 The link target URL.
41 @type string
42 @default null
43*/
44 href: null,
45
46/**
47 The language of the linked resource.
48 @type string
49 @default null
50*/
51 hreflang: null,
52
53/**
54 The media type for which the target document was designed.
55 @type string
56 @default null
57*/
58 media: null,
59
60/**
61 Controls what kinds of links the elements create.
62 @type string
63 @default null
64*/
65 rel: null,
66
67/**
68 The target window the link will open in.
69 @type string
70 @default null
71*/
72 target: null,
73
74/**
75 The MIME type of the linked resource.
76 @type string
77 @default null
78*/
79 type: null
26}); 80});