Dustin Falgout
9 years ago
30 changed files with 110 additions and 52 deletions
@ -0,0 +1,7 @@
|
||||
SUBDIRS = \
|
||||
css
|
||||
fonts
|
||||
js
|
||||
|
||||
DISTCLEANFILES = \
|
||||
Makefile.in
|
@ -0,0 +1,7 @@
|
||||
vendorcssdir = $(THEME_DIR)/vendor/css
|
||||
vendorcss_DATA = bootstrap.min.css bootswatch-paper.bootstrap.min.css
|
||||
|
||||
EXTRA_DIST = $(vendorcss_DATA)
|
||||
|
||||
DISTCLEANFILES = \
|
||||
Makefile.in
|
File diff suppressed because one or more lines are too long
@ -1,7 +1,7 @@
|
||||
fawesomedir = $(THEME_DIR)/antergos/fonts/font-awesome
|
||||
fawesomedir = $(THEME_DIR)/vendor/fonts/font-awesome
|
||||
fawesome_DATA = font-awesome.min.css fontawesome-webfont.woff2 fontawesome-webfont.woff
|
||||
|
||||
EXTRA_DIST = $(fawesome_DATA)
|
||||
|
||||
DISTCLEANFILES = \
|
||||
Makefile.in
|
||||
Makefile.in
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,12 @@
|
||||
vendorjsdir = $(THEME_DIR)/vendor/js
|
||||
vendorjs_DATA = \
|
||||
bootstrap.min.js \
|
||||
jquery.min.js \
|
||||
js.cookie.min.js \
|
||||
mock.js \
|
||||
moment-with-locales.min.js
|
||||
|
||||
EXTRA_DIST = $(vendorjs_DATA)
|
||||
|
||||
DISTCLEANFILES = \
|
||||
Makefile.in
|
@ -0,0 +1,11 @@
|
||||
/*! |
||||
* JavaScript Cookie v2.1.0 |
||||
* https://github.com/js-cookie/js-cookie
|
||||
* |
||||
* Copyright 2006, 2015 Klaus Hartl & Fagner Brack |
||||
* Released under the MIT license |
||||
*/ |
||||
(function(k){if("function"===typeof define&&define.amd)define(k);else if("object"===typeof exports)module.exports=k();else{var g=window.Cookies,b=window.Cookies=k();b.noConflict=function(){window.Cookies=g;return b}}})(function(){function k(){for(var b=0,c={};b<arguments.length;b++){var a=arguments[b],f;for(f in a)c[f]=a[f]}return c}function g(b){function c(a,f,e){var h;if(1<arguments.length){e=k({path:"/"},c.defaults,e);if("number"===typeof e.expires){var l=new Date;l.setMilliseconds(l.getMilliseconds()+ |
||||
864E5*e.expires);e.expires=l}try{h=JSON.stringify(f),/^[\{\[]/.test(h)&&(f=h)}catch(g){}f=b.write?b.write(f,a):encodeURIComponent(String(f)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);a=encodeURIComponent(String(a));a=a.replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent);a=a.replace(/[\(\)]/g,escape);return document.cookie=[a,"=",f,e.expires&&"; expires="+e.expires.toUTCString(),e.path&&"; path="+e.path,e.domain&&"; domain="+e.domain,e.secure?"; secure": |
||||
""].join("")}a||(h={});for(var l=document.cookie?document.cookie.split("; "):[],p=/(%[0-9A-Z]{2})+/g,n=0;n<l.length;n++){var d=l[n].split("="),m=d[0].replace(p,decodeURIComponent),d=d.slice(1).join("=");'"'===d.charAt(0)&&(d=d.slice(1,-1));try{d=b.read?b.read(d,m):b(d,m)||d.replace(p,decodeURIComponent);if(this.json)try{d=JSON.parse(d)}catch(g){}if(a===m){h=d;break}a||(h[m]=d)}catch(g){}}return h}c.get=c.set=c;c.getJSON=function(){return c.apply({json:!0},[].slice.call(arguments))};c.defaults={}; |
||||
c.remove=function(a,b){c(a,"",k(b,{expires:-1}))};c.withConverter=g;return c}return g(function(){})}); |
@ -1,7 +0,0 @@
|
||||
vendordir = $(THEME_DIR)/antergos/css/vendor
|
||||
vendor_DATA = bootstrap.min.css
|
||||
|
||||
EXTRA_DIST = $(vendor_DATA)
|
||||
|
||||
DISTCLEANFILES = \
|
||||
Makefile.in
|
File diff suppressed because one or more lines are too long
@ -1,10 +0,0 @@
|
||||
jsvendordir = $(THEME_DIR)/antergos/js/vendor
|
||||
jsvendor_DATA = \
|
||||
jquery-2.1.4.min.js \
|
||||
bootstrap.min.js \
|
||||
moment-with-locales.min.js
|
||||
|
||||
EXTRA_DIST = $(jsvendor_DATA)
|
||||
|
||||
DISTCLEANFILES = \
|
||||
Makefile.in
|
Loading…
Reference in new issue