我在render 'layouts/lms_header'
但我在undefined is not a function
$(window).setBreakpoints();
我不知道为什么会收到此错误。
我想我已经加载了jquery
和breakpoints.js
。
我使用breakpoint
http://xoxco.com/projects/code/breakpoints/example.html
库
!!!
%html
%head
%title BalanceCafe
= stylesheet_link_tag 'application', media: 'all'
= javascript_include_tag 'application'
= csrf_meta_tags
=render 'layouts/lms_header'
//= require jquery
//= require jquery_ujs
//= require_self
//= require welcome
$(document).ready(function() {
return $(function() {
$(window).bind("enterBreakpoint1024", function() {
$("#log").append("<p>Entering 1024 breakpoint</p>");
});
$(window).setBreakpoints();
});