Fixed deprecation warnings for meteor with Template.name.helper

This commit is contained in:
Yash Mehrotra 2015-09-28 19:20:45 +05:30
Родитель 7d2842886a
Коммит 1a49ef6a09
6 изменённых файлов: 75 добавлений и 53 удалений

Просмотреть файл

@ -17,9 +17,11 @@ if (Meteor.isClient) {
var timestamp = null;
Template.veristags.veris=function(){
return veris.find({tag:{$regex:'.*' +Session.get('verisfilter') + '.*',$options:'i'}},{limit:50});
};
Template.veristags.helpers({
veris: function() {
return veris.find({tag:{$regex:'.*' +Session.get('verisfilter') + '.*',$options:'i'}},{limit:50});
}
});
Template.veristags.events({
'dragstart .tag': function(e){
@ -36,11 +38,13 @@ if (Meteor.isClient) {
//return all incidents
Template.incidents.incident = function () {
return incidents.find({},{
sort: {dateOpened: -1}
});
};
Template.incidents.helpers({
incident: function () {
return incidents.find({},{
sort: {dateOpened: -1}
});
}
});
//select an incident for editing
Template.incidents.events({
@ -601,4 +605,4 @@ if (Meteor.isClient) {
}
});
}
}

Просмотреть файл

@ -19,11 +19,13 @@ if (Meteor.isClient) {
var timestamp = null;
//return all investigations
Template.investigations.investigation = function () {
return investigations.find({},{
sort: {dateOpened: -1}
});
};
Template.investigations.helpers({
investigation: function () {
return investigations.find({},{
sort: {dateOpened: -1}
});
}
});
//select an investigation for editing
Template.investigations.events({
@ -674,4 +676,4 @@ if (Meteor.isClient) {
}
});
}
}

Просмотреть файл

@ -45,17 +45,21 @@ if (Meteor.isClient) {
"click .showmodal": function(event, template) {
$("#modalcifwindow").modal()
}
});
});
Template.ipcif.cif= function(){
cifDep.depend();
return cifresult;
};
Template.ipcif.helpers({
cif: function() {
cifDep.depend();
return cifresult;
}
});
Template.cifmodal.cif= function(){
cifDep.depend();
return cifresult;
};
Template.cifmodal.helpers({
cif: function() {
cifDep.depend();
return cifresult;
}
});
Template.cifmodal.rendered = function () {
//console.log(Session.get('ipcifipaddress'));
@ -67,4 +71,4 @@ if (Meteor.isClient) {
Deps.autorun(getCIF); //end deps.autorun
};
}
}

Просмотреть файл

@ -47,15 +47,19 @@ if (Meteor.isClient) {
}
});
Template.ipdshield.dshield= function(){
dshieldDep.depend();
return dshieldresult;
};
Template.ipdshield.helpers({
dshield: function() {
dshieldDep.depend();
return dshieldresult;
}
});
Template.dshieldmodal.dshield= function(){
dshieldDep.depend();
return dshieldresult;
};
Template.dshieldmodal.helpers({
dshield: function() {
dshieldDep.depend();
return dshieldresult;
}
});
Template.dshieldmodal.rendered = function () {
//console.log(Session.get('ipdshieldipaddress'));
@ -67,4 +71,4 @@ if (Meteor.isClient) {
Deps.autorun(getDshield); //end deps.autorun
};
}
}

Просмотреть файл

@ -45,17 +45,21 @@ if (Meteor.isClient) {
"click .showmodal": function(event, template) {
$("#modalintelwindow").modal()
}
});
});
Template.ipintel.intel= function(){
intelDep.depend();
return intelresult;
};
Template.ipintel.helpers({
intel: function(){
intelDep.depend();
return intelresult;
}
});
Template.intelmodal.intel= function(){
intelDep.depend();
return intelresult;
};
Template.intelmodal.helpers({
intel: function() {
intelDep.depend();
return intelresult;
}
});
Template.intelmodal.rendered = function () {
//console.log(Session.get('ipintelipaddress'));
@ -67,4 +71,4 @@ if (Meteor.isClient) {
Deps.autorun(getintel); //end deps.autorun
};
}
}

Просмотреть файл

@ -47,15 +47,19 @@ if (Meteor.isClient) {
}
});
Template.ipwhois.whois= function(){
whoisDep.depend();
return whoisresult;
};
Template.ipwhois.helpers({
whois: function() {
whoisDep.depend();
return whoisresult;
}
});
Template.whoismodal.whois= function(){
whoisDep.depend();
return whoisresult;
};
Template.whoismodal.helpers({
whois: function() {
whoisDep.depend();
return whoisresult;
}
});
Template.whoismodal.rendered = function () {
//console.log(Session.get('ipwhoisipaddress'));
@ -67,4 +71,4 @@ if (Meteor.isClient) {
Deps.autorun(getWhois); //end deps.autorun
};
}
}