Skip to content

Commit

Permalink
renamed objeq-ext.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kode4food committed Aug 30, 2012
1 parent b3101dc commit 982214f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/objeq-ext.js → examples/extensions.js
Expand Up @@ -2,7 +2,7 @@
// These are also *not* tested, so use them at your own risk

if ( typeof require === 'function' ) {
var $objeq = require('../objeq/objeq');
var $objeq = require('../objeq');
}

$objeq.registerExtension({
Expand Down
2 changes: 1 addition & 1 deletion examples/index.html
Expand Up @@ -4,7 +4,7 @@
<script type="text/javascript" src="../objeq/objeq.js"></script>
<script type="text/javascript" src="../objeq/objeq-parser.js"></script>
<!--<script type="text/javascript" src="../objeq.min.js"></script>-->
<script type="text/javascript" src="objeq-ext.js"></script>
<script type="text/javascript" src="extensions.js"></script>
<script type="text/javascript">
function performQuery() {
try {
Expand Down
2 changes: 1 addition & 1 deletion index.js
@@ -1 +1 @@
module.exports = require('./objeq/objeq');
module.exports = require('./objeq');
1 change: 1 addition & 0 deletions objeq/index.js
@@ -0,0 +1 @@
module.exports = require('./objeq');
2 changes: 1 addition & 1 deletion test/aggregates.js
Expand Up @@ -2,7 +2,7 @@ var nodeunit = require('nodeunit');
var objeq = require('..');

// Load the Example Extensions
require('../examples/objeq-ext');
require('../examples/extensions');

exports.aggregates = nodeunit.testCase({
setUp: function (callback) {
Expand Down

0 comments on commit 982214f

Please sign in to comment.