Skip to content

Commit

Permalink
fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlmaniac committed Feb 20, 2016
1 parent 4b592a8 commit eabf19c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions bower.json
@@ -1,26 +1,26 @@
{
"name": "jquery-boilerplate",
"version": "4.0.0",
"license": "MIT",
"authors": [
"license": "MIT",
"authors": [
"Zeno Rocha <hi@zenorocha.com>"
],
"description": "A jump-start for jQuery plugins development.",
"homepage": "http://jqueryboilerplate.com",
"keywords": [
"homepage": "http://jqueryboilerplate.com",
"keywords": [
"jquery",
"plugin",
"boilerplate",
"jquery-plugin",
"jquery-boilerplate"
],
"main": "src/jquery.boilerplate.js",
"dependencies": {
"dependencies": {
"jquery": "1"
},
"ignore": [
"npm-debug.log",
"bower_components",
"node_modules"
"bower_components",
"node_modules"
]
}
8 changes: 4 additions & 4 deletions src/jquery.boilerplate.js
Expand Up @@ -16,8 +16,8 @@
// Create the defaults once
var pluginName = "defaultPluginName",
defaults = {
propertyName: "value"
};
propertyName: "value"
};

// The actual plugin constructor
function Plugin ( element, options ) {
Expand All @@ -44,8 +44,8 @@
this.yourOtherFunction( "jQuery Boilerplate" );
},
yourOtherFunction: function( text ) {
// some logic
$( this.element ).text( text );
// some logic
$( this.element ).text( text );
}
} );

Expand Down

0 comments on commit eabf19c

Please sign in to comment.