2014-12-23 18:35:19 -05:00
|
|
|
var links = [
|
|
|
|
|
"https://google.com",
|
|
|
|
|
"https://drive.google.com/drive",
|
|
|
|
|
"https://translate.google.com",
|
|
|
|
|
"https://keep.google.com/",
|
|
|
|
|
"https://mail.google.com/mail/u/0/",
|
2015-01-31 21:04:08 -05:00
|
|
|
"https://classroom.google.com/h",
|
|
|
|
|
"https://maps.google.com/",
|
|
|
|
|
"https://earth.google.com/",
|
2014-12-23 18:35:19 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
Template.initial.events({
|
|
|
|
|
'click .chromeicon': function() {
|
|
|
|
|
var randomint = Math.floor(Math.random() * (links.length - 1));
|
2014-12-25 17:42:54 -05:00
|
|
|
window.open(links[randomint], "_blank");
|
|
|
|
|
},
|
2015-01-12 19:51:46 -05:00
|
|
|
'click .submit': function() {
|
2015-01-31 22:29:04 -05:00
|
|
|
Router.go('/login');
|
2014-12-23 18:35:19 -05:00
|
|
|
}
|
2015-01-31 22:29:04 -05:00
|
|
|
})
|