-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit eda8c93
Showing
33 changed files
with
913 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "app/bower_components" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
node_modules | ||
dist | ||
.tmp | ||
.sass-cache | ||
app/bower_components |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"node": true, | ||
"esnext": true, | ||
"bitwise": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"indent": 2, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"quotmark": "single", | ||
"regexp": true, | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"smarttabs": true, | ||
"white": true, | ||
"validthis": true, | ||
"globals": { | ||
"angular": false | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Page Not Found :(</title> | ||
<style> | ||
::-moz-selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
::selection { | ||
background: #b3d4fc; | ||
text-shadow: none; | ||
} | ||
|
||
html { | ||
padding: 30px 10px; | ||
font-size: 20px; | ||
line-height: 1.4; | ||
color: #737373; | ||
background: #f0f0f0; | ||
-webkit-text-size-adjust: 100%; | ||
-ms-text-size-adjust: 100%; | ||
} | ||
|
||
html, | ||
input { | ||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; | ||
} | ||
|
||
body { | ||
max-width: 500px; | ||
_width: 500px; | ||
padding: 30px 20px 50px; | ||
border: 1px solid #b3b3b3; | ||
border-radius: 4px; | ||
margin: 0 auto; | ||
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff; | ||
background: #fcfcfc; | ||
} | ||
|
||
h1 { | ||
margin: 0 10px; | ||
font-size: 50px; | ||
text-align: center; | ||
} | ||
|
||
h1 span { | ||
color: #bbb; | ||
} | ||
|
||
h3 { | ||
margin: 1.5em 0 0.5em; | ||
} | ||
|
||
p { | ||
margin: 1em 0; | ||
} | ||
|
||
ul { | ||
padding: 0 0 0 40px; | ||
margin: 1em 0; | ||
} | ||
|
||
.container { | ||
max-width: 380px; | ||
_width: 380px; | ||
margin: 0 auto; | ||
} | ||
|
||
/* google search */ | ||
|
||
#goog-fixurl ul { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
#goog-fixurl form { | ||
margin: 0; | ||
} | ||
|
||
#goog-wm-qt, | ||
#goog-wm-sb { | ||
border: 1px solid #bbb; | ||
font-size: 16px; | ||
line-height: normal; | ||
vertical-align: top; | ||
color: #444; | ||
border-radius: 2px; | ||
} | ||
|
||
#goog-wm-qt { | ||
width: 220px; | ||
height: 20px; | ||
padding: 5px; | ||
margin: 5px 10px 0 0; | ||
box-shadow: inset 0 1px 1px #ccc; | ||
} | ||
|
||
#goog-wm-sb { | ||
display: inline-block; | ||
height: 32px; | ||
padding: 0 10px; | ||
margin: 5px 0 0; | ||
white-space: nowrap; | ||
cursor: pointer; | ||
background-color: #f5f5f5; | ||
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1); | ||
-webkit-appearance: none; | ||
-moz-appearance: none; | ||
appearance: none; | ||
*overflow: visible; | ||
*display: inline; | ||
*zoom: 1; | ||
} | ||
|
||
#goog-wm-sb:hover, | ||
#goog-wm-sb:focus { | ||
border-color: #aaa; | ||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); | ||
background-color: #f8f8f8; | ||
} | ||
|
||
#goog-wm-qt:hover, | ||
#goog-wm-qt:focus { | ||
border-color: #105cb6; | ||
outline: 0; | ||
color: #222; | ||
} | ||
|
||
input::-moz-focus-inner { | ||
padding: 0; | ||
border: 0; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<h1>Not found <span>:(</span></h1> | ||
<p>Sorry, but the page you were trying to view does not exist.</p> | ||
<p>It looks like this was the result of either:</p> | ||
<ul> | ||
<li>a mistyped address</li> | ||
<li>an out-of-date link</li> | ||
</ul> | ||
<script> | ||
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host; | ||
</script> | ||
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script> | ||
</div> | ||
</body> | ||
</html> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!doctype html> | ||
<html class="no-js" ng-app="chatblendUi"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>frontend</title> | ||
<meta name="description" content=""> | ||
<meta name="viewport" content="width=device-width"> | ||
<!-- Place favicon.ico and apple-touch-icon.png in the root directory --> | ||
|
||
<!-- build:css({.tmp,app}) styles/vendor.css --> | ||
<link rel="stylesheet" href="styles/vendor.css"> | ||
|
||
<!-- bower:css --> | ||
<!-- endbower --> | ||
<!-- endbuild --> | ||
|
||
<!-- build:css({.tmp,app}) styles/main.css --> | ||
<link rel="stylesheet" href="styles/main.css"> | ||
<!-- endbuild --> | ||
|
||
<!-- build:js scripts/modernizr.js --> | ||
<script src="bower_components/modernizr/modernizr.js"></script> | ||
<!-- endbuild --> | ||
</head> | ||
<body> | ||
<!--[if lt IE 10]> | ||
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> | ||
<![endif]--> | ||
|
||
<div ng-view></div> | ||
|
||
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. --> | ||
<script> | ||
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]= | ||
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date; | ||
e=o.createElement(i);r=o.getElementsByTagName(i)[0]; | ||
e.src='//www.google-analytics.com/analytics.js'; | ||
r.parentNode.insertBefore(e,r)}(window,document,'script','ga')); | ||
ga('create','UA-XXXXX-X');ga('send','pageview'); | ||
</script> | ||
|
||
<!-- build:js scripts/vendor.js --> | ||
<!-- bower:js --> | ||
<script src="bower_components/angular/angular.js"></script> | ||
<script src="bower_components/angular-animate/angular-animate.js"></script> | ||
<script src="bower_components/angular-cookies/angular-cookies.js"></script> | ||
<script src="bower_components/angular-touch/angular-touch.js"></script> | ||
<script src="bower_components/angular-sanitize/angular-sanitize.js"></script> | ||
<script src="bower_components/angular-resource/angular-resource.js"></script> | ||
<script src="bower_components/angular-route/angular-route.js"></script> | ||
<!-- endbower --> | ||
<!-- endbuild --> | ||
|
||
<!-- build:js({app,.tmp}) scripts/main.js --> | ||
<script src="scripts/chatblendUi.js"></script> | ||
<script src="scripts/main/main-ctrl.js"></script> | ||
|
||
<!-- inject:partials --> | ||
<!-- angular templates will be automaticaly converted in js and inserted here --> | ||
<!-- endinject --> | ||
<!-- endbuild --> | ||
|
||
</body> | ||
</html> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<div class="container"> | ||
|
||
<nav class="navbar"> | ||
<a href="#">Gulp Angular</a> | ||
|
||
<ul> | ||
<li class="active"><a ng-href="#">Home</a></li> | ||
<li><a ng-href="#">About</a></li> | ||
<li><a ng-href="#">Contact</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<div class="jumbotron"> | ||
<h1>'Allo, 'Allo!</h1> | ||
<p class="lead"> | ||
<img src="images/yeoman.png" alt="I'm Yeoman"><br> | ||
Always a pleasure scaffolding your apps. | ||
</p> | ||
<p><a class="btn" ng-href="#">Splendid!</a></p> | ||
</div> | ||
|
||
<div class="col" ng-repeat="awesomeThing in awesomeThings | orderBy:'rank'"> | ||
<div class="thumbnail"> | ||
<img class="pull-right" ng-src="images/{{awesomeThing.logo}}" alt="{{awesomeThing.title}}"> | ||
<div class="caption"> | ||
<h3>{{awesomeThing.title}}</h3> | ||
<p>{{awesomeThing.description}}</p> | ||
<p><a ng-href="{{awesomeThing.url}}">{{awesomeThing.url}}</a></p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<hr> | ||
|
||
<div class="footer"> | ||
<p>With ♥ from <a href="https://twitter.com/Swiip">@Swiip</a></p> | ||
</div> | ||
|
||
</div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
'use strict'; | ||
|
||
angular.module('chatblendUi', ['ngAnimate', 'ngCookies', 'ngTouch', 'ngSanitize', 'ngResource', 'ngRoute']) | ||
.config(function ($routeProvider) { | ||
$routeProvider | ||
.when('/', { | ||
templateUrl: 'partials/main.html', | ||
controller: 'MainCtrl' | ||
}) | ||
.otherwise({ | ||
redirectTo: '/' | ||
}); | ||
}) | ||
; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
'use strict'; | ||
|
||
angular.module('chatblendUi') | ||
.controller('MainCtrl', function ($scope) { | ||
$scope.awesomeThings = [ | ||
{ | ||
'key': 'angular', | ||
'title': 'AngularJS', | ||
'url': 'https://angularjs.org/', | ||
'description': 'HTML enhanced for web apps!', | ||
'logo': 'angular.png' | ||
}, | ||
{ | ||
'key': 'browsersync', | ||
'title': 'BrowserSync', | ||
'url': 'http://browsersync.io/', | ||
'description': 'Time-saving synchronised browser testing.', | ||
'logo': 'browsersync.png' | ||
}, | ||
{ | ||
'key': 'gulp', | ||
'title': 'GulpJS', | ||
'url': 'http://gulpjs.com/', | ||
'description': 'The streaming build system.', | ||
'logo': 'gulp.png' | ||
}, | ||
{ | ||
'key': 'jasmine', | ||
'title': 'Jasmine', | ||
'url': 'http://jasmine.github.io/', | ||
'description': 'Behavior-Driven JavaScript.', | ||
'logo': 'jasmine.png' | ||
}, | ||
{ | ||
'key': 'karma', | ||
'title': 'Karma', | ||
'url': 'http://karma-runner.github.io/', | ||
'description': 'Spectacular Test Runner for JavaScript.', | ||
'logo': 'karma.png' | ||
}, | ||
{ | ||
'key': 'protractor', | ||
'title': 'Protractor', | ||
'url': 'https://github.com/angular/protractor', | ||
'description': 'End to end test framework for AngularJS applications built on top of WebDriverJS.', | ||
'logo': 'protractor.png' | ||
}, | ||
{ | ||
'key': 'less', | ||
'title': 'Less', | ||
'url': 'http://lesscss.org/', | ||
'description': 'Less extends the CSS language, adding features that allow variables, mixins, functions and many other techniques.', | ||
'logo': 'less.png' | ||
} | ||
]; | ||
angular.forEach($scope.awesomeThings, function(awesomeThing) { | ||
awesomeThing.rank = Math.random(); | ||
}); | ||
}); |
Oops, something went wrong.