This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Compiling no file at Fri Jan 13 11:06:51 2017 | |
| Warning (bytecomp): package-tar-file-info called with 1 argument, but accepts only 0 | |
| Warning (bytecomp): the function ‘package-desc-from-legacy’ is not known to be defined. | |
| Warning (bytecomp): reference to free variable ‘lst’ | |
| Warning (bytecomp): ‘goto-line’ is for interactive use only; use ‘forward-line’ instead. | |
| Warning (bytecomp): reference to free variable ‘clean-aindent--last-indent’ [2 times] | |
| Warning (bytecomp): reference to free variable ‘clean-aindent--last-indent-len’ | |
| Warning (bytecomp): reference to free variable ‘clean-aindent--last-indent’ [2 times] | |
| Warning (bytecomp): assignment to free variable ‘clean-aindent--last-indent’ | |
| Warning (bytecomp): cl package required at runtime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*** | |
| * Copyright (c) 2013 Benjamin Zalasky | |
| * Released under the MIT license - http://opensource.org/licenses/MIT | |
| ***/ | |
| (function ($) { | |
| $.carousel = function (el, options) { | |
| var defaults = { | |
| itemSel: 'li', | |
| height: 540, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| describe("click .icons-close-x", function () { | |
| backboneHistorySpy(); | |
| beforeEach( function () { | |
| this.closeModalSpy = sinon.spy(StippleApp.Views.PhotoDetailHeader, 'closeModal'); | |
| this.view = new StippleApp.Views.PhotoDetailHeader({ model: this.model, modal: true, activeTab: 'engagement' }); | |
| this.view.render(); | |
| this.view.$(".icons-close-x").click(); | |
| }); |