aboutsummaryrefslogtreecommitdiffstats
path: root/ui/version.js
blob: fdd99f79fcfafaf819985b317b6be8f65ea06b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
( function( factory ) {
	if ( typeof define === "function" && define.amd ) {

		// AMD. Register as an anonymous module.
		define( [ "jquery" ], factory );
	} else {

		// Browser globals
		factory( jQuery );
	}
} ( function( $ ) {

$.ui = $.ui || {};

return $.ui.version = "@VERSION";

} ) );