56c240958d19713cbd379db8a9e16543d4efd847
[platform/framework/web/crosswalk-tizen.git] /
1 (function() {
2
3 // top level block isn't indented
4 var x = 123;
5
6 setTimeout(function() {
7   x();
8 });
9
10 }());
11
12 // don't mess up other code outside a function scope
13 var x = {
14   abc: 123
15 };
16
17 module.exports = function() {
18
19 var x = 123;
20
21 };
22
23 (function(factory) {
24   if (typeof define === "function" && define.amd) {
25     // AMD. Register as an anonymous module.
26     define([
27       "jquery",
28       "./core",
29       "./widget"
30     ], factory);
31   } else {
32     // Browser globals
33     factory(jQuery);
34   }
35 }(function($) {
36 return $.widget("ui.accordion", {
37   version: "@VERSION",
38   options: {}
39 });
40 }));