Skip to content

Commit

Permalink
Made some additional initial setups
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanFitzgerald committed Oct 2, 2016
1 parent a34695c commit 1662944
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 1 deletion.
25 changes: 25 additions & 0 deletions bower.json
@@ -0,0 +1,25 @@
{
"name": "liquo",
"description": "Filterable and Responsive Image Gallery",
"main": "liquo/liquo.js",
"authors": [
"Ryan Fitzgerald"
],
"license": "MIT",
"keywords": [
"javascript",
"jquery",
"image",
"gallery",
"filter",
"category"
],
"homepage": "https://github.com/RyanFitzgerald/liquo",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
]
}
2 changes: 1 addition & 1 deletion gulpfile.js
Expand Up @@ -21,4 +21,4 @@ gulp.task('sass', function() {
gulp.task('watch', function() {
gulp.watch('liquo/*.js', ['compress']);
gulp.watch('liquo/*.scss', ['sass']);
});
});
10 changes: 10 additions & 0 deletions liquo/liquo.css
@@ -0,0 +1,10 @@
/*
Liquo - Filterable and Responsive Image Gallery
Version 1.0.0
Ryan Fitzgerald
https://RyanFitzgerald.ca/
---
Repo: http://github.com/ryanfitzgerald/liquo
Issues: http://github.com/ryanfitzgerald/liquo/issues
Licensed under MIT Open Source
*/
30 changes: 30 additions & 0 deletions liquo/liquo.js
@@ -0,0 +1,30 @@
/*
Liquo - Filterable and Responsive Image Gallery
Version 1.0.0
Ryan Fitzgerald
https://RyanFitzgerald.ca/
---
Repo: http://github.com/ryanfitzgerald/liquo
Issues: http://github.com/ryanfitzgerald/liquo/issues
Licensed under MIT Open Source
*/

(function($) {

$.fn.liquo = function(options) {

// Override defaults, if provided
var settings = $.extend({

}, options);

// Allow chaining and process each DOM node
return this.each(function() {



});

}

})(jQuery);
1 change: 1 addition & 0 deletions liquo/liquo.min.js
@@ -0,0 +1 @@
!function(n){n.fn.liquo=function(t){n.extend({},t);return this.each(function(){})}}(jQuery);
10 changes: 10 additions & 0 deletions liquo/liquo.scss
@@ -0,0 +1,10 @@
/*
Liquo - Filterable and Responsive Image Gallery
Version 1.0.0
Ryan Fitzgerald
https://RyanFitzgerald.ca/
---
Repo: http://github.com/ryanfitzgerald/liquo
Issues: http://github.com/ryanfitzgerald/liquo/issues
Licensed under MIT Open Source
*/

0 comments on commit 1662944

Please sign in to comment.