-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
53 lines (42 loc) · 1.74 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
(function () {
'use strict';
/************************************************************
* Ensures console object is usable on non-console browsers *
************************************************************/
var method,
noop = function noop() {},
methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
],
length = methods.length,
console = (window.console = window.console || {});
while (length--) {
method = methods[length];
// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
/************************************************************
* Load Javascripts Asynchronously **************************
************************************************************/
// Load Angular Scripts
Modernizr.load([
// Load dependents
'wp-content/themes/phipress/vendor/jquery/full/jquery.js',
// Load extensions
// 'wp-content/themes/phipress/src/ui-ix/extensions/navigation/phi.navigation.js',
// 'wp-content/themes/phipress/src/ui-ix/extensions/tabs/jquery.foundation.tabs.js',
'wp-content/themes/phipress/src/ui-ix/extensions/modals/jquery.foundation.reveal.js',
// 'wp-content/themes/phipress/src/ui-ix/extensions/wayfinder/jquery.waypoints.js',
// 'wp-content/themes/phipress/src/ui-ix/extensions/alerts/jquery.foundation.alerts.js',
// 'wp-content/themes/phipress/src/ui-ix/extensions/date-picker/kalendae.js',
// Load core js
'wp-content/themes/phipress/src/ui-ix/core/core.js',
// Load project js
'wp-content/themes/phipress/src/ui-ix/project/project.js'
]);
}());