This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[user] | |
name = Markus Gattol | |
email = [email protected] | |
signingkey = Markus | |
[core] | |
excludesfile = /home/sa/.gitignore | |
[color] | |
ui = true | |
[alias] | |
# status |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Template.application_security.events({ | |
"click #requirementAdd": function (evt, templ) { | |
var requirement = templ.find("#requirementText").value; | |
var motivation = templ.find("#motivationText").value; | |
var example = templ.find("#exampleText").value; | |
var technology = templ.find("#technologyText").value; | |
Requirements.insert({ | |
requirement: requirement, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<title>Some Title</title> | |
<link href='https://fonts.googleapis.com/css?family=Ubuntu:400,300,300italic,400italic,700,700italic|Ubuntu+Mono' rel='stylesheet' type='text/css'/> | |
<link href="//vjs.zencdn.net/4.3/video-js.css" rel="stylesheet"> | |
<script src="//vjs.zencdn.net/4.3/video.js"></script> | |
<meta name="viewport" content="initial-scale=1"> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<li id="nav-connection-status-li"> | |
<span class="label {{connection_status.label}}">{{connection_status.connection_status}}</span> <span class="badge">{{connection_status.retryCount}}</span> | |
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Template.navbar.connection_status = function () { | |
var connection_status = Meteor.status().status; | |
var retryCount = Meteor.status().retryCount; | |
switch(connection_status){ | |
case "connected": | |
return { label: "label-success", | |
connection_status: connection_status}; | |
case "waiting": |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"presets":[{"title":"HVGA (old iPhones, small Androids)","width":320,"height":480,"type":"featurephone","target":"viewport"},{"title":"WVGA - Low-end Windows Phone","width":480,"height":800,"type":"smartphone","target":"viewport"},{"title":"DVGA - iPhone","width":640,"height":960,"type":"smartphone","target":"viewport"},{"title":"WXGA - High-end Windows Phone","width":768,"height":1280,"type":"smartphone","target":"viewport"},{"title":"XGA - iPad","width":1024,"height":768,"type":"tablet","target":"viewport"},{"title":"WXGA - Tablet","width":1366,"height":768,"type":"tablet","target":"viewport"},{"title":"WXGA - Netbook","width":1280,"height":800,"type":"laptop","target":"window"},{"title":"WXGA - Ultrabook","width":1366,"height":768,"type":"laptop","target":"window"},{"title":"SXGA - Small desktop","width":1280,"height":1024,"type":"desktop","target":"window"},{"title":"WSXGA+ - Large desktop","width":1680,"height":1050,"type":"desktop","target":"window"}],"settings":{"popupWidth":"250","tooltipDelay":"2000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I see the same result for {{loginButtons align="right"}} and {{loginButtons}} on a completely fresh project. What am I missing? | |
cat .meteor/packages gives: | |
# Meteor Packages Used By This Project, One Per Line. | |
# | |
# 'Meteor Add' And 'Meteor Remove' Will Edit This File For You, | |
# But You Can Also Edit It By Hand. | |
Standard-App-Packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"presets":[{"title":"col-sx","width":"480","height":"500","type":"desktop","target":"viewport","X":"","Y":"","pos":"0"},{"title":"col-sm","width":"768","height":"1500","type":"desktop","target":"viewport","X":"","Y":"","pos":"0","ID":1},{"title":"col-md","width":"992","height":"1500","type":"desktop","target":"viewport","X":"","Y":"","pos":"0","ID":2},{"title":"col-lg","width":"1200","height":"1500","type":"desktop","target":"viewport","X":"","Y":"","pos":"0","ID":3}],"settings":{"iconBehavior":"0","popupDescription":"0","popupWidth":"250","tooltip":"0","tooltipDelay":"4000"}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(custom-set-faces | |
;; custom-set-faces was added by Custom. | |
;; If you edit it by hand, you could mess it up, so be careful. | |
;; Your init file should contain only one such instance. | |
;; If there is more than one, they won't work right. | |
'(default ((t nil))) | |
'(buffer-menu-delete-mark ((t (:background "Red" :foreground "white" :weight bold)))) | |
'(buffer-menu-modified-mark ((t (:foreground "red" :weight bold)))) | |
'(buffer-menu-read-only-mark ((t (:foreground "black")))) | |
'(buffer-menu-save-mark ((t (:background "green" :foreground "white" :weight bold)))) |