~caneypuggies/reformedchurcheslocator/couchapp-backbone

« back to all changes in this revision

Viewing changes to _attachments/js/vendor/requirejs/tests/jquery/scripts/dynamicApp.js

  • Committer: Tim Black
  • Date: 2013-09-16 22:50:16 UTC
  • Revision ID: tim@alwaysreformed.com-20130916225016-zk8jiba25z33ew7h
Versioned Bower vendor directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
require({
 
2
    "baseUrl": "./scripts/",
 
3
    "paths": {
 
4
        "jquery": "http://ajax.microsoft.com/ajax/jQuery/jquery-1.7.1.min"
 
5
        //"jquery": "http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min"
 
6
    },
 
7
    priority: ['jquery']
 
8
});
 
9
 
 
10
define(["jquery.gamma", "jquery.epsilon"], function() {
 
11
 
 
12
    $(function () {
 
13
        doh.is('epsilon', $('body').epsilon());
 
14
        doh.is('epsilon', $('body').epsilon());
 
15
        readyFired();
 
16
    });
 
17
 
 
18
});