Skip to content
This repository was archived by the owner on Oct 11, 2018. It is now read-only.

changes prepareForActiviationEvents to enterDocument on tables #721

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ui/controls/ip-aliases.reel/ip-aliases.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Component = require('montage/ui/component').Component;

exports.IpAliases = Component.specialize({
prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Component = require("montage/ui/component").Component;

exports.TablePort = Component.specialize({
prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var Component = require("montage/ui/component").Component;

exports.TableVolume = Component.specialize({
prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exports.TableHosts = Component.specialize({
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exports.TableRoutes = Component.specialize({
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports.TableActiveDirectory = Component.specialize(/** @lends TableActiveDirect
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exports.TableFreeipa = Component.specialize(/** @lends TableFreeipa# */ {
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports.TableLdap = Component.specialize(/** @lends TableLdap# */ {
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports.TableNis = Component.specialize(/** @lends TableNis# */ {
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ exports.TableAfp = Component.specialize(/** @lends TableAfp# */ {
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exports.TableIscsi = Component.specialize(/** @lends TableIscsi# */ {
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ exports.TableNfs = Component.specialize(/** @lends TableNfs# */ {
});
}
},
prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ exports.TableSmb = Component.specialize(/** @lends TableSmb# */ {
}
},

prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ exports.TableUsers = Component.specialize(/** @lends TableUsers# */ {
}
},
//TODO: password checking.
prepareForActivationEvents: {
enterDocument: {
value: function () {
this.addEventListener("action", this);
}
Expand Down