This file contains hidden or 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
Meteor.startup () -> | |
# Countries collection initialization. | |
countries_csv = Assets.getText('country.csv') | |
csv = Meteor.require('csv') | |
countries_count = Countries.find().count() | |
if countries_count is 0 | |
Future = Npm.require('fibers/future') | |
future = new Future() | |
csv() | |
.from.string(countries_csv, {comment: '#'}) |
This file contains hidden or 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
Show hidden characters
// While you can edit this file, it's best to put your changes in | |
// "User/Preferences.sublime-settings", which overrides the settings in here. | |
// | |
// Settings may also be placed in file type specific options files, for | |
// example, in Packages/Python/Python.sublime-settings for python files. | |
{ | |
// Sets the colors used within the text area | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
// Note that the font_face and font_size are overriden in the platform |
This file contains hidden or 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
. | |
├── client | |
│ └── views | |
├── lib | |
├── packages.json | |
├── server | |
└── smart.json |
This file contains hidden or 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
dm-user-management | |
├── README.md | |
├── client | |
│ ├── user-management-styles.less | |
│ ├── user_pager.coffee | |
│ ├── users-mesosphere.coffee | |
│ ├── users.coffee | |
│ └── users.html | |
├── collections | |
│ └── users_collection.coffee |
This file contains hidden or 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
Package.describe({ | |
summary: "A user managment tab for the CM project" | |
}); | |
Package.on_use(function (api, where) { | |
api.use(['templating', 'coffeescript', 'less', 'Mesosphere', 'paginate', 'bootstrap', 'iron-router'], ['client','server']); | |
api.add_files([ | |
'collections/users_collection.coffee', | |
'client/users-mesosphere.coffee', | |
], ['client','server']); |
This file contains hidden or 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
{ | |
"name": "S3-Progress", | |
"description": "A full featured helper for easily uploading files to Amazon S3 from your Meteor application.", | |
"homepage": "https://github.com/digilord/Meteor-S3-Progress", | |
"author": "Digilord <[email protected]>", | |
"version": "1.5.8", | |
"git": "https://github.com/digilord/Meteor-S3-Progress.git", | |
"packages": { | |
"collection-hooks": {}, | |
"momentjs": {}, |
This file contains hidden or 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
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<polymer-element name="polymer-file-upload" attributes=""> | |
<template> | |
<style> | |
/* styles for the custom element itself - lowest specificity */ | |
:host { display: block; } | |
/* | |
style if an ancestor has the different class | |
:host(.different) { } |
This file contains hidden or 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
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<polymer-element name="polymer-file-upload" attributes=""> | |
<template> | |
<style> | |
/* styles for the custom element itself - lowest specificity */ | |
:host { display: block; } | |
/* | |
style if an ancestor has the different class | |
:host(.different) { } |
This file contains hidden or 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
<link rel="import" href="../bower_components/polymer/polymer.html"> | |
<polymer-element name="polymer-file-upload" attributes=""> | |
<template> | |
<style> | |
/* styles for the custom element itself - lowest specificity */ | |
:host { display: block; } | |
/* | |
style if an ancestor has the different class | |
:host(.different) { } |
This file contains hidden or 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>ffff</title> | |
</head> | |
<body> | |
<h1>ffff</h1> | |
{{> welcome }} | |
{{> persons }} | |
</body> |