forked from vistaprint/SkinnyJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
files
168 lines (140 loc) · 4.2 KB
/
files
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/// <reference path="jquery.delimitedString.js" />
(function($)
{
var processBreakpoints = function($el, breakpoints)
{
var width = $el.innerWidth();
for (var name in breakpoints)
{
var breakpoint = breakpoints[name];
var cssClass = "breakpoint-" + name;
if (width <= breakpoint.max && width >= breakpoint.min)
{
// If there is an "enter" callback defined, and we are transitioning
// into this breakpoint, call the callback.
var callEnter = false;
if (breakpoint.enter)
{
if (!$el.hasClass(cssClass))
{
callEnter = true;
}
}
$el.addClass(cssClass);
if (callEnter)
{
breakpoint.enter.apply($el[0]);
}
}
else
{
// If there is an "leave" callback defined, and we are transitioning
// into this breakpoint, call the callback.
var callLeave = false;
if (breakpoint.leave)
{
if (!$el.hasClass(cssClass))
{
callLeave = true;
}
}
$el.removeClass(cssClass);
if (callLeave)
{
breakpoint.enter.apply($el[0]);
}
}
}
};
var normalizeBreakpoints = function(breakpoints)
{
var maxWidths = [];
for (var name in breakpoints)
{
var breakpoint = breakpoints[name];
if ($.isNumeric(breakpoint))
{
var max = parseInt(breakpoint, 10);
breakpoint =
{
max: max
};
breakpoints[name] = breakpoint;
}
else if (breakpoint.hasOwnProperty("max"))
{
breakpoints.max = parseInt(breakpoints.max, 10);
}
else
{
throw new Error("No max specified for breakpoint: " + name);
}
maxWidths.push(breakpoint.max);
}
maxWidths.sort();
return maxWidths;
};
var setMinWidths = function(breakpoints, maxWidths)
{
for (var name in breakpoints)
{
var breakpoint = breakpoints[name];
if (breakpoint.hasOwnProperty("min"))
{
continue;
}
for (var i=0; i<maxWidths.length; i++)
{
if (breakpoint.max == maxWidths[i])
{
if (i === 0)
{
breakpoint.min = 0;
}
else
{
breakpoint.min = maxWidths[i-1] + 1;
}
break;
}
}
}
};
$.fn.breakpoints = function(breakpoints)
{
var maxWidths = normalizeBreakpoints(breakpoints);
setMinWidths(breakpoints, maxWidths);
this.each(function(i, el)
{
var processBreakpoints = function()
{
processBreakpoints($(el), breakpoints);
};
$(document)
.ready(processBreakpoints)
.on("resize", processBreakpoints)
.on("orientationchange", processBreakpoints);
});
return this;
};
// Unobtrusive style
$.fn.breakpointsFromAttrs = function()
{
this.find("[data-breakpoints]").each(function(i, el)
{
var $el = $(el);
var bpStr = $el.attr("data-breakpoints");
if (!bpStr)
{
return;
}
var breakpoints = $.parseDelimitedString(bpStr, ";", ":", $.trim, $.trim);
$el.breakpoints(breakpoints);
});
return this;
};
$(document).ready(function()
{
$(document).breakpointsFromAttrs();
});
})(jQuery);