We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8d9f2 commit 0b0cacdCopy full SHA for 0b0cacd
js/jquery.mobile.grid.js
@@ -2,12 +2,14 @@
2
//>>description: Applies classes for grid styling.
3
//>>label: CSS Grid Tool
4
5
-define( [ "jquery" ], function( $ ) {
+define( [ "jquery", "./jquery.mobile.core" ], function( $ ) {
6
//>>excludeEnd("jqmBuildExclude");
7
(function( $, undefined ) {
8
9
$.fn.grid = function( options ) {
10
- return this.each(function() {
+ var $workingSet = $.mobile.enhanceable( this );
11
+
12
+ return $workingSet.each(function() {
13
14
var $this = $( this ),
15
o = $.extend({
0 commit comments