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
#!/usr/bin/env node | |
const path = require('path'); | |
const fs = require('fs'); | |
let iconList = []; | |
function fromDir(startPath, filter, callback) { | |
if (!fs.existsSync(startPath)) { | |
console.warn(`Not a valid directory: ${startPath}`); |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="description" content="Making active just one menu item"> | |
<meta charset="utf-8"> | |
<title>Ember Menu Links</title> | |
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/normalize/2.1.0/normalize.css"> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> | |
<script src="http://builds.emberjs.com/tags/v2.4.2/ember.debug.js"></script> | |
<script src="http://builds.emberjs.com/tags/v2.4.2/ember-template-compiler.js"></script> |