commit
544fe1cfd4
@ -0,0 +1,141 @@ |
||||
var src = 'public/'; |
||||
var dest = 'dist/'; |
||||
|
||||
var scripts = [ |
||||
'public/js/app.js', |
||||
'public/js/controllers.js', |
||||
'public/js/filters.js', |
||||
'public/js/directives.js', |
||||
'public/js/script.js' |
||||
]; |
||||
|
||||
var vendor = [ |
||||
'public/js/lib/jquery.min.js', |
||||
'public/js/lib/bootstrap.min.js', |
||||
'public/js/lib/angular.min.js', |
||||
'public/js/lib/lodash.min.js', |
||||
'public/js/lib/d3.min.js', |
||||
'public/js/lib/d3.tip.min.js', |
||||
'public/js/lib/topojson.min.js', |
||||
'public/js/lib/datamaps.min.js', |
||||
'public/js/lib/moment.min.js', |
||||
'public/js/lib/moment.en.min.js', |
||||
'public/js/lib/toastr.min.js', |
||||
'public/js/lib/jquery.sparkline.min.js', |
||||
'public/js/lib/primus.min.js' |
||||
]; |
||||
|
||||
var styles = [ |
||||
'bootstrap.min.css', |
||||
'minimal-icons-embedded.css', |
||||
'toastr.min.css', |
||||
'style.css' |
||||
]; |
||||
|
||||
module.exports = function(grunt) { |
||||
grunt.initConfig({ |
||||
pkg: grunt.file.readJSON('package.json'), |
||||
clean: { |
||||
build: ['dist'], |
||||
cleanup_js: ['dist/js/*.*', '!dist/js/netstats.*'], |
||||
cleanup_css: ['dist/css/*.css', '!dist/css/netstats.*.css'] |
||||
}, |
||||
jade: { |
||||
build: { |
||||
options: { |
||||
data: { |
||||
debug: false, |
||||
pretty: true |
||||
} |
||||
}, |
||||
files: { |
||||
'dist/index.html': 'views/index.jade' |
||||
} |
||||
} |
||||
}, |
||||
copy: { |
||||
build: { |
||||
files: [ |
||||
{ |
||||
expand: true, |
||||
cwd: 'public/fonts/', |
||||
src: ['minimal-*.*'], |
||||
dest: 'dist/fonts/', |
||||
filter: 'isFile' |
||||
}, |
||||
{ |
||||
expand: true, |
||||
cwd: 'public/images/', |
||||
src: ['*.ico'], |
||||
dest: 'dist/', |
||||
filter: 'isFile' |
||||
}, |
||||
{ |
||||
expand: true, |
||||
cwd: 'public/css/', |
||||
src: styles, |
||||
dest: 'dist/css/', |
||||
filter: 'isFile' |
||||
}, |
||||
{ |
||||
src: 'public/js/lib/angular.min.js.map', |
||||
dest: 'dist/js/angular.min.js.map' |
||||
} |
||||
] |
||||
} |
||||
}, |
||||
cssmin: { |
||||
build: { |
||||
files: [{ |
||||
expand: true, |
||||
cwd: 'dist/css', |
||||
src: ['*.css', '!*.min.css'], |
||||
dest: 'dist/css/' |
||||
}] |
||||
} |
||||
}, |
||||
concat: { |
||||
vendor: { |
||||
src: vendor, |
||||
dest: 'dist/js/vendor.min.js' |
||||
}, |
||||
scripts : { |
||||
options: { |
||||
separator: ';', |
||||
}, |
||||
src: scripts, |
||||
dest: 'dist/js/app.js' |
||||
}, |
||||
netstats: { |
||||
options: { |
||||
sourceMap: true |
||||
}, |
||||
src: ['<%= concat.vendor.dest %>', '<%= uglify.app.dest %>'], |
||||
dest: 'dist/js/netstats.min.js' |
||||
}, |
||||
css: { |
||||
src: ['dist/css/*.min.css', 'dist/css/*.css'], |
||||
dest: 'dist/css/netstats.min.css' |
||||
} |
||||
}, |
||||
uglify: { |
||||
app: { |
||||
options: { |
||||
mangle: false, |
||||
}, |
||||
dest: 'dist/js/app.min.js', |
||||
src: ['<%= concat.scripts.dest %>'] |
||||
} |
||||
} |
||||
}); |
||||
|
||||
grunt.loadNpmTasks('grunt-contrib-clean'); |
||||
grunt.loadNpmTasks('grunt-contrib-copy'); |
||||
grunt.loadNpmTasks('grunt-contrib-concat'); |
||||
grunt.loadNpmTasks('grunt-contrib-jade'); |
||||
grunt.loadNpmTasks('grunt-contrib-cssmin'); |
||||
grunt.loadNpmTasks('grunt-contrib-uglify'); |
||||
|
||||
grunt.registerTask('default', ['clean', 'jade', 'copy', 'cssmin', 'concat:vendor', 'concat:scripts', 'uglify', 'concat:netstats', 'concat:css', 'clean:cleanup_js', 'clean:cleanup_css']); |
||||
grunt.registerTask('build', 'default'); |
||||
}; |
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 574 B |
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 574 B |
@ -1,7 +1,40 @@ |
||||
'use strict'; |
||||
|
||||
var netStatsApp = angular.module('netStatsApp', ['lodash', 'angularMoment', 'netStatsApp.filters', 'netStatsApp.directives']); |
||||
/* Init Angular App */ |
||||
|
||||
netStatsApp.run(function(amMoment) { |
||||
amMoment.changeLocale('en-gb'); |
||||
}); |
||||
var netStatsApp = angular.module('netStatsApp', ['netStatsApp.filters', 'netStatsApp.directives']); |
||||
|
||||
|
||||
/* Services */ |
||||
|
||||
netStatsApp.factory('socket', function ($rootScope) { |
||||
var socket = new Primus(); |
||||
return socket; |
||||
}); |
||||
|
||||
netStatsApp.factory('toastr', function ($rootScope) { |
||||
toastr = window.toastr; |
||||
toastr.options = { |
||||
"closeButton": false, |
||||
"debug": false, |
||||
"progressBar": false, |
||||
"newestOnTop": true, |
||||
"positionClass": "toast-top-right", |
||||
"preventDuplicates": false, |
||||
"onclick": null, |
||||
"showDuration": "300", |
||||
"hideDuration": "1000", |
||||
"timeOut": "5000", |
||||
"extendedTimeOut": "1000", |
||||
"showEasing": "swing", |
||||
"hideEasing": "linear", |
||||
"showMethod": "fadeIn", |
||||
"hideMethod": "fadeOut" |
||||
}; |
||||
return toastr; |
||||
}); |
||||
|
||||
netStatsApp.factory('_', function ($rootScope) { |
||||
var lodash = window._; |
||||
return lodash; |
||||
}); |
||||
|
@ -1,2 +0,0 @@ |
||||
"format global";"deps angular";"deps moment";!function(){"use strict";function a(a,b){return a.module("angularMoment",[]).constant("angularMomentConfig",{preprocess:null,timezone:"",format:null,statefulFilters:!0}).constant("moment",b).constant("amTimeAgoConfig",{withoutSuffix:!1,serverTime:null,titleFormat:null}).directive("amTimeAgo",["$window","moment","amMoment","amTimeAgoConfig","angularMomentConfig",function(b,c,d,e,f){return function(g,h,i){function j(){var a;if(e.serverTime){var b=(new Date).getTime(),d=b-u+e.serverTime;a=c(d)}else a=c();return a}function k(){q&&(b.clearTimeout(q),q=null)}function l(a){if(h.text(a.from(j(),s)),t&&!h.attr("title")&&h.attr("title",a.local().format(t)),!x){var c=Math.abs(j().diff(a,"minute")),d=3600;1>c?d=1:60>c?d=30:180>c&&(d=300),q=b.setTimeout(function(){l(a)},1e3*d)}}function m(a){y&&h.attr("datetime",a)}function n(){if(k(),o){var a=d.preprocessDate(o,v,r);l(a),m(a.toISOString())}}var o,p,q=null,r=f.format,s=e.withoutSuffix,t=e.titleFormat,u=(new Date).getTime(),v=f.preprocess,w=i.amTimeAgo.replace(/^::/,""),x=0===i.amTimeAgo.indexOf("::"),y="TIME"===h[0].nodeName.toUpperCase();p=g.$watch(w,function(a){return"undefined"==typeof a||null===a||""===a?(k(),void(o&&(h.text(""),m(""),o=null))):(o=a,n(),void(void 0!==a&&x&&p()))}),a.isDefined(i.amWithoutSuffix)&&g.$watch(i.amWithoutSuffix,function(a){"boolean"==typeof a?(s=a,n()):s=e.withoutSuffix}),i.$observe("amFormat",function(a){"undefined"!=typeof a&&(r=a,n())}),i.$observe("amPreprocess",function(a){v=a,n()}),g.$on("$destroy",function(){k()}),g.$on("amMoment:localeChanged",function(){n()})}}]).service("amMoment",["moment","$rootScope","$log","angularMomentConfig",function(b,c,d,e){this.preprocessors={utc:b.utc,unix:b.unix},this.changeLocale=function(d,e){var f=b.locale(d,e);return a.isDefined(d)&&c.$broadcast("amMoment:localeChanged"),f},this.changeTimezone=function(a){e.timezone=a,c.$broadcast("amMoment:timezoneChanged")},this.preprocessDate=function(c,f,g){return a.isUndefined(f)&&(f=e.preprocess),this.preprocessors[f]?this.preprocessors[f](c,g):(f&&d.warn("angular-moment: Ignoring unsupported value for preprocess: "+f),!isNaN(parseFloat(c))&&isFinite(c)?b(parseInt(c,10)):b(c,g))},this.applyTimezone=function(a){var b=e.timezone;return a&&b&&(a.tz?a=a.tz(b):d.warn("angular-moment: timezone specified but moment.tz() is undefined. Did you forget to include moment-timezone.js?")),a}}]).filter("amCalendar",["moment","amMoment","angularMomentConfig",function(a,b,c){function d(c,d){if("undefined"==typeof c||null===c)return"";c=b.preprocessDate(c,d);var e=a(c);return e.isValid()?b.applyTimezone(e).calendar():""}return d.$stateful=c.statefulFilters,d}]).filter("amDateFormat",["moment","amMoment","angularMomentConfig",function(a,b,c){function d(c,d,e){if("undefined"==typeof c||null===c)return"";c=b.preprocessDate(c,e);var f=a(c);return f.isValid()?b.applyTimezone(f).format(d):""}return d.$stateful=c.statefulFilters,d}]).filter("amDurationFormat",["moment","angularMomentConfig",function(a,b){function c(b,c,d){return"undefined"==typeof b||null===b?"":a.duration(b,c).humanize(d)}return c.$stateful=b.statefulFilters,c}]).filter("amTimeAgo",["moment","amMoment","angularMomentConfig",function(a,b,c){function d(c,d,e){if("undefined"==typeof c||null===c)return"";c=b.preprocessDate(c,d);var f=a(c);return f.isValid()?b.applyTimezone(f).fromNow(e):""}return d.$stateful=c.statefulFilters,d}])}"function"==typeof define&&define.amd?define("angular-moment",["angular","moment"],a):"undefined"!=typeof module&&module&&module.exports?a(angular,require("moment")):a(angular,window.moment)}(); |
||||
//# sourceMappingURL=angular-moment.min.js.map
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@ |
||||
d3.tip=function(){function t(t){v=d(t),w=v.createSVGPoint(),document.body.appendChild(x)}function e(){return"n"}function n(){return[0,0]}function r(){return" "}function o(){var t=y();return{top:t.n.y-x.offsetHeight,left:t.n.x-x.offsetWidth/2}}function l(){var t=y();return{top:t.s.y,left:t.s.x-x.offsetWidth/2}}function s(){var t=y();return{top:t.e.y-x.offsetHeight/2,left:t.e.x}}function f(){var t=y();return{top:t.w.y-x.offsetHeight/2,left:t.w.x-x.offsetWidth}}function i(){var t=y();return{top:t.nw.y-x.offsetHeight,left:t.nw.x-x.offsetWidth}}function u(){var t=y();return{top:t.ne.y-x.offsetHeight,left:t.ne.x}}function a(){var t=y();return{top:t.sw.y,left:t.sw.x-x.offsetWidth}}function c(){var t=y();return{top:t.se.y,left:t.e.x}}function p(){var t=d3.select(document.createElement("div"));return t.style({position:"absolute",opacity:0,pointerEvents:"none",boxSizing:"border-box"}),t.node()}function d(t){return t=t.node(),"svg"==t.tagName.toLowerCase()?t:t.ownerSVGElement}function y(){var t=T||d3.event.target,e={},n=t.getScreenCTM(),r=t.getBBox(),o=r.width,l=r.height,s=r.x,f=r.y,i=document.documentElement.scrollTop||document.body.scrollTop,u=document.documentElement.scrollLeft||document.body.scrollLeft;return w.x=s+u,w.y=f+i,e.nw=w.matrixTransform(n),w.x+=o,e.ne=w.matrixTransform(n),w.y+=l,e.se=w.matrixTransform(n),w.x-=o,e.sw=w.matrixTransform(n),w.y-=l/2,e.w=w.matrixTransform(n),w.x+=o,e.e=w.matrixTransform(n),w.x-=o/2,w.y-=l/2,e.n=w.matrixTransform(n),w.y+=l,e.s=w.matrixTransform(n),e}var m=e,g=n,h=r,x=p(),v=null,w=null,T=null;t.show=function(){var e=Array.prototype.slice.call(arguments);e[e.length-1]instanceof SVGElement&&(T=e.pop());var n,r=h.apply(this,e),o=g.apply(this,e),l=m.apply(this,e),s=d3.select(x),f=0;for(s.html(r).style({opacity:1,"pointer-events":"all"});f--;)s.classed(E[f],!1);return n=b.get(l).apply(this),s.classed(l,!0).style({top:n.top+o[0]+"px",left:n.left+o[1]+"px"}),t},t.hide=function(){return nodel=d3.select(x),nodel.style({opacity:0,"pointer-events":"none"}),t},t.attr=function(e){if(arguments.length<2&&"string"==typeof e)return d3.select(x).attr(e);var n=Array.prototype.slice.call(arguments);return d3.selection.prototype.attr.apply(d3.select(x),n),t},t.style=function(e){if(arguments.length<2&&"string"==typeof e)return d3.select(x).style(e);var n=Array.prototype.slice.call(arguments);return d3.selection.prototype.style.apply(d3.select(x),n),t},t.direction=function(e){return arguments.length?(m=null==e?e:d3.functor(e),t):m},t.offset=function(e){return arguments.length?(g=null==e?e:d3.functor(e),t):g},t.html=function(e){return arguments.length?(h=null==e?e:d3.functor(e),t):h};var b=d3.map({n:o,s:l,e:s,w:f,nw:i,ne:u,sw:a,se:c}),E=b.keys();return t}; |
@ -1,280 +0,0 @@ |
||||
// d3.tip
|
||||
// Copyright (c) 2013 Justin Palmer
|
||||
//
|
||||
// Tooltips for d3.js SVG visualizations
|
||||
|
||||
// Public - contructs a new tooltip
|
||||
//
|
||||
// Returns a tip
|
||||
d3.tip = function() { |
||||
var direction = d3_tip_direction, |
||||
offset = d3_tip_offset, |
||||
html = d3_tip_html, |
||||
node = initNode(), |
||||
svg = null, |
||||
point = null, |
||||
target = null |
||||
|
||||
function tip(vis) { |
||||
svg = getSVGNode(vis) |
||||
point = svg.createSVGPoint() |
||||
document.body.appendChild(node) |
||||
} |
||||
|
||||
// Public - show the tooltip on the screen
|
||||
//
|
||||
// Returns a tip
|
||||
tip.show = function() { |
||||
var args = Array.prototype.slice.call(arguments) |
||||
if(args[args.length - 1] instanceof SVGElement) target = args.pop() |
||||
|
||||
var content = html.apply(this, args), |
||||
poffset = offset.apply(this, args), |
||||
dir = direction.apply(this, args), |
||||
nodel = d3.select(node), i = 0, |
||||
coords |
||||
|
||||
nodel.html(content) |
||||
.style({ opacity: 1, 'pointer-events': 'all' }) |
||||
|
||||
while(i--) nodel.classed(directions[i], false) |
||||
coords = direction_callbacks.get(dir).apply(this) |
||||
nodel.classed(dir, true).style({ |
||||
top: (coords.top + poffset[0]) + 'px', |
||||
left: (coords.left + poffset[1]) + 'px' |
||||
}) |
||||
|
||||
return tip |
||||
} |
||||
|
||||
// Public - hide the tooltip
|
||||
//
|
||||
// Returns a tip
|
||||
tip.hide = function() { |
||||
nodel = d3.select(node) |
||||
nodel.style({ opacity: 0, 'pointer-events': 'none' }) |
||||
return tip |
||||
} |
||||
|
||||
// Public: Proxy attr calls to the d3 tip container. Sets or gets attribute value.
|
||||
//
|
||||
// n - name of the attribute
|
||||
// v - value of the attribute
|
||||
//
|
||||
// Returns tip or attribute value
|
||||
tip.attr = function(n, v) { |
||||
if (arguments.length < 2 && typeof n === 'string') { |
||||
return d3.select(node).attr(n) |
||||
} else { |
||||
var args = Array.prototype.slice.call(arguments) |
||||
d3.selection.prototype.attr.apply(d3.select(node), args) |
||||
} |
||||
|
||||
return tip |
||||
} |
||||
|
||||
// Public: Proxy style calls to the d3 tip container. Sets or gets a style value.
|
||||
//
|
||||
// n - name of the property
|
||||
// v - value of the property
|
||||
//
|
||||
// Returns tip or style property value
|
||||
tip.style = function(n, v) { |
||||
if (arguments.length < 2 && typeof n === 'string') { |
||||
return d3.select(node).style(n) |
||||
} else { |
||||
var args = Array.prototype.slice.call(arguments) |
||||
d3.selection.prototype.style.apply(d3.select(node), args) |
||||
} |
||||
|
||||
return tip |
||||
} |
||||
|
||||
// Public: Set or get the direction of the tooltip
|
||||
//
|
||||
// v - One of n(north), s(south), e(east), or w(west), nw(northwest),
|
||||
// sw(southwest), ne(northeast) or se(southeast)
|
||||
//
|
||||
// Returns tip or direction
|
||||
tip.direction = function(v) { |
||||
if (!arguments.length) return direction |
||||
direction = v == null ? v : d3.functor(v) |
||||
|
||||
return tip |
||||
} |
||||
|
||||
// Public: Sets or gets the offset of the tip
|
||||
//
|
||||
// v - Array of [x, y] offset
|
||||
//
|
||||
// Returns offset or
|
||||
tip.offset = function(v) { |
||||
if (!arguments.length) return offset |
||||
offset = v == null ? v : d3.functor(v) |
||||
|
||||
return tip |
||||
} |
||||
|
||||
// Public: sets or gets the html value of the tooltip
|
||||
//
|
||||
// v - String value of the tip
|
||||
//
|
||||
// Returns html value or tip
|
||||
tip.html = function(v) { |
||||
if (!arguments.length) return html |
||||
html = v == null ? v : d3.functor(v) |
||||
|
||||
return tip |
||||
} |
||||
|
||||
function d3_tip_direction() { return 'n' } |
||||
function d3_tip_offset() { return [0, 0] } |
||||
function d3_tip_html() { return ' ' } |
||||
|
||||
var direction_callbacks = d3.map({ |
||||
n: direction_n, |
||||
s: direction_s, |
||||
e: direction_e, |
||||
w: direction_w, |
||||
nw: direction_nw, |
||||
ne: direction_ne, |
||||
sw: direction_sw, |
||||
se: direction_se |
||||
}), |
||||
|
||||
directions = direction_callbacks.keys() |
||||
|
||||
function direction_n() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.n.y - node.offsetHeight, |
||||
left: bbox.n.x - node.offsetWidth / 2 |
||||
} |
||||
} |
||||
|
||||
function direction_s() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.s.y, |
||||
left: bbox.s.x - node.offsetWidth / 2 |
||||
} |
||||
} |
||||
|
||||
function direction_e() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.e.y - node.offsetHeight / 2, |
||||
left: bbox.e.x |
||||
} |
||||
} |
||||
|
||||
function direction_w() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.w.y - node.offsetHeight / 2, |
||||
left: bbox.w.x - node.offsetWidth |
||||
} |
||||
} |
||||
|
||||
function direction_nw() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.nw.y - node.offsetHeight, |
||||
left: bbox.nw.x - node.offsetWidth |
||||
} |
||||
} |
||||
|
||||
function direction_ne() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.ne.y - node.offsetHeight, |
||||
left: bbox.ne.x |
||||
} |
||||
} |
||||
|
||||
function direction_sw() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.sw.y, |
||||
left: bbox.sw.x - node.offsetWidth |
||||
} |
||||
} |
||||
|
||||
function direction_se() { |
||||
var bbox = getScreenBBox() |
||||
return { |
||||
top: bbox.se.y, |
||||
left: bbox.e.x |
||||
} |
||||
} |
||||
|
||||
function initNode() { |
||||
var node = d3.select(document.createElement('div')) |
||||
node.style({ |
||||
position: 'absolute', |
||||
opacity: 0, |
||||
pointerEvents: 'none', |
||||
boxSizing: 'border-box' |
||||
}) |
||||
|
||||
return node.node() |
||||
} |
||||
|
||||
function getSVGNode(el) { |
||||
el = el.node() |
||||
if(el.tagName.toLowerCase() == 'svg') |
||||
return el |
||||
|
||||
return el.ownerSVGElement |
||||
} |
||||
|
||||
// Private - gets the screen coordinates of a shape
|
||||
//
|
||||
// Given a shape on the screen, will return an SVGPoint for the directions
|
||||
// n(north), s(south), e(east), w(west), ne(northeast), se(southeast), nw(northwest),
|
||||
// sw(southwest).
|
||||
//
|
||||
// +-+-+
|
||||
// | |
|
||||
// + +
|
||||
// | |
|
||||
// +-+-+
|
||||
//
|
||||
// Returns an Object {n, s, e, w, nw, sw, ne, se}
|
||||
function getScreenBBox() { |
||||
var targetel = target || d3.event.target, |
||||
bbox = {}, |
||||
matrix = targetel.getScreenCTM(), |
||||
tbbox = targetel.getBBox(), |
||||
width = tbbox.width, |
||||
height = tbbox.height, |
||||
x = tbbox.x, |
||||
y = tbbox.y, |
||||
scrollTop = document.documentElement.scrollTop || document.body.scrollTop, |
||||
scrollLeft = document.documentElement.scrollLeft || document.body.scrollLeft |
||||
|
||||
|
||||
point.x = x + scrollLeft |
||||
point.y = y + scrollTop |
||||
bbox.nw = point.matrixTransform(matrix) |
||||
point.x += width |
||||
bbox.ne = point.matrixTransform(matrix) |
||||
point.y += height |
||||
bbox.se = point.matrixTransform(matrix) |
||||
point.x -= width |
||||
bbox.sw = point.matrixTransform(matrix) |
||||
point.y -= height / 2 |
||||
bbox.w = point.matrixTransform(matrix) |
||||
point.x += width |
||||
bbox.e = point.matrixTransform(matrix) |
||||
point.x -= width / 2 |
||||
point.y -= height / 2 |
||||
bbox.n = point.matrixTransform(matrix) |
||||
point.y += height |
||||
bbox.s = point.matrixTransform(matrix) |
||||
|
||||
return bbox |
||||
} |
||||
|
||||
return tip |
||||
}; |
@ -1,65 +0,0 @@ |
||||
// moment.js locale configuration
|
||||
// locale : great britain english (en-gb)
|
||||
// author : Chris Gedrim : https://github.com/chrisgedrim
|
||||
|
||||
(function (factory) { |
||||
if (typeof define === 'function' && define.amd) { |
||||
define(['moment'], factory); // AMD
|
||||
} else if (typeof exports === 'object') { |
||||
module.exports = factory(require('../moment')); // Node
|
||||
} else { |
||||
factory((typeof global !== 'undefined' ? global : this).moment); // node or other global
|
||||
} |
||||
}(function (moment) { |
||||
return moment.defineLocale('en-gb', { |
||||
months : 'January_February_March_April_May_June_July_August_September_October_November_December'.split('_'), |
||||
monthsShort : 'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'), |
||||
weekdays : 'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'), |
||||
weekdaysShort : 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'), |
||||
weekdaysMin : 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'), |
||||
longDateFormat : { |
||||
LT : 'HH:mm', |
||||
LTS : 'HH:mm:ss', |
||||
L : 'DD/MM/YYYY', |
||||
LL : 'D MMMM YYYY', |
||||
LLL : 'D MMMM YYYY LT', |
||||
LLLL : 'dddd, D MMMM YYYY LT' |
||||
}, |
||||
calendar : { |
||||
sameDay : '[Today at] LT', |
||||
nextDay : '[Tomorrow at] LT', |
||||
nextWeek : 'dddd [at] LT', |
||||
lastDay : '[Yesterday at] LT', |
||||
lastWeek : '[Last] dddd [at] LT', |
||||
sameElse : 'L' |
||||
}, |
||||
relativeTime : { |
||||
future : 'in %s', |
||||
past : '%s ago', |
||||
s : 'a few sec', |
||||
m : '1 min', |
||||
mm : '%d min', |
||||
h : '1 h', |
||||
hh : '%d h', |
||||
d : 'a day', |
||||
dd : '%d days', |
||||
M : 'a month', |
||||
MM : '%d mon', |
||||
y : 'a year', |
||||
yy : '%d years' |
||||
}, |
||||
ordinalParse: /\d{1,2}(st|nd|rd|th)/, |
||||
ordinal : function (number) { |
||||
var b = number % 10, |
||||
output = (~~(number % 100 / 10) === 1) ? 'th' : |
||||
(b === 1) ? 'st' : |
||||
(b === 2) ? 'nd' : |
||||
(b === 3) ? 'rd' : 'th'; |
||||
return number + output; |
||||
}, |
||||
week : { |
||||
dow : 1, // Monday is the first day of the week.
|
||||
doy : 4 // The week that contains Jan 4th is the first week of the year.
|
||||
} |
||||
}); |
||||
})); |
@ -0,0 +1 @@ |
||||
!function(e){"function"==typeof define&&define.amd?define(["moment"],e):"object"==typeof exports?module.exports=e(require("../moment")):e(("undefined"!=typeof global?global:this).moment)}(function(e){return e.defineLocale("en-gb",{months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),monthsShort:"Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec".split("_"),weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),weekdaysShort:"Sun_Mon_Tue_Wed_Thu_Fri_Sat".split("_"),weekdaysMin:"Su_Mo_Tu_We_Th_Fr_Sa".split("_"),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY LT",LLLL:"dddd, D MMMM YYYY LT"},calendar:{sameDay:"[Today at] LT",nextDay:"[Tomorrow at] LT",nextWeek:"dddd [at] LT",lastDay:"[Yesterday at] LT",lastWeek:"[Last] dddd [at] LT",sameElse:"L"},relativeTime:{future:"in %s",past:"%s ago",s:"a few sec",m:"1 min",mm:"%d min",h:"1 h",hh:"%d h",d:"a day",dd:"%d days",M:"a month",MM:"%d mon",y:"a year",yy:"%d years"},ordinalParse:/\d{1,2}(st|nd|rd|th)/,ordinal:function(e){var a=e%10,d=1===~~(e%100/10)?"th":1===a?"st":2===a?"nd":3===a?"rd":"th";return e+d},week:{dow:1,doy:4}})}); |
File diff suppressed because one or more lines are too long
@ -1,35 +0,0 @@ |
||||
'use strict'; |
||||
|
||||
/* Services */ |
||||
|
||||
netStatsApp.factory('socket', function ($rootScope) { |
||||
var socket = new Primus(); |
||||
return socket; |
||||
}); |
||||
|
||||
netStatsApp.factory('toastr', function ($rootScope) { |
||||
toastr = window.toastr; |
||||
toastr.options = { |
||||
"closeButton": false, |
||||
"debug": false, |
||||
"progressBar": false, |
||||
"newestOnTop": true, |
||||
"positionClass": "toast-top-right", |
||||
"preventDuplicates": false, |
||||
"onclick": null, |
||||
"showDuration": "300", |
||||
"hideDuration": "1000", |
||||
"timeOut": "5000", |
||||
"extendedTimeOut": "1000", |
||||
"showEasing": "swing", |
||||
"hideEasing": "linear", |
||||
"showMethod": "fadeIn", |
||||
"hideMethod": "fadeOut" |
||||
}; |
||||
return toastr; |
||||
}); |
||||
|
||||
var lodash = angular.module('lodash', []); |
||||
lodash.factory('_', function() { |
||||
return window._; |
||||
}); |
Loading…
Reference in new issue