├── .gitignore ├── 100-with-fixed-width-column └── index.html ├── README.md ├── ajax-2000ms ├── contato.html ├── index.html ├── lenta.php ├── loading.gif └── outra.html ├── boilerplate-front ├── .gitignore ├── .htaccess ├── 404.html ├── Gruntfile.js ├── README.md ├── apple-touch-icon-precomposed.png ├── css │ ├── boxsizing.htc │ └── main.css ├── favicon.ico ├── footer.tpl.html ├── header.tpl.html ├── images │ └── logomarca.png ├── inc │ ├── class │ │ ├── .htaccess │ │ └── Seo.class.php │ ├── config.inc.php │ └── init.inc.php ├── index.html ├── javascript │ └── all.js ├── package.json ├── robots.txt ├── sitemap.xml └── src │ ├── css │ ├── boxsizing.htc │ ├── column-gs.css │ └── reset.css │ └── javascript │ └── all.js ├── calc-simples └── index.html ├── calc-table-select └── index.html ├── calc-table └── index.html ├── change-links ├── all.js ├── index.html └── process.php ├── check-count └── index.html ├── check-input └── index.php ├── check-json └── index.html ├── check-table └── index.html ├── checkSum ├── LICENSE ├── README.md └── index.html ├── checkboxes-opcionais ├── bd.php ├── config.ini ├── dump.sql ├── functions.php ├── index.php ├── main.css └── vehicle.php ├── clickcount ├── app.js ├── index.html └── package.json ├── cookie-refresh └── index.html ├── disable_inputs └── index.html ├── form-preview └── index.html ├── gh-fork-ribbon.css ├── i-promise-you ├── ajax-angular-promise.html ├── ajax-backbone-promise.html ├── ajax-callback-functions.html ├── ajax-callback.html ├── ajax-jquery-promise.html ├── ajax-promise.html ├── angular.js ├── backbone.js ├── callback-promises.js ├── erros.js ├── jquery.js ├── package.json ├── promise.html ├── right.js ├── sabesp-last-7-days-promise.html ├── sabesp-last-7-days.html └── underscore.js ├── input-check-required └── index.html ├── input-disabled └── index.html ├── input-img └── index.html ├── input-sum └── index.html ├── isFriday ├── Carneirinho.java ├── HowManyDays.class.php ├── caffeine-level.html ├── comente-este-codigo.php ├── depois-do-fim.html ├── horas-do-dia.html ├── isFriday.html ├── ja-terminou.html ├── keepcalm.sql ├── lifeIsALoop.html ├── opcoes-feriado.html └── sexta.php ├── mascaras └── index.html ├── modal └── index.html ├── money-blur ├── index.html ├── money-blur.js ├── package.json └── test.js ├── music-slide ├── 03-storm-the-sorrow.mp3 ├── 03-storm-the-sorrow.ogg └── index.html ├── nodejs-in-production ├── app.js ├── bin │ └── www ├── package.json ├── routes.js └── scripts │ ├── default.conf │ ├── initd.sh │ ├── nginx.conf │ ├── upstart.conf │ └── upstream.nodejs.conf ├── pause-interval └── index.html ├── quiz ├── .gitignore ├── LICENSE ├── README.md ├── all.js ├── answers.json ├── index.html ├── main.css └── process.php ├── rotate ├── gatinho.jpg └── index.html ├── scup ├── README.md ├── frontend-test-failure.json ├── frontend-test-success.json ├── jquery │ ├── index.html │ └── main.js ├── proxy.php └── vanilla │ ├── index.html │ ├── main.js │ └── xhr.js ├── select-create-fields └── index.html ├── select-link └── index.html ├── select-radio ├── radio-jquery.html ├── radio.html ├── select-jquery.html └── select.html ├── select-sum └── index.html ├── show-hide └── index.html ├── simple-slideshow └── index.html ├── slider100 ├── all.js ├── images │ ├── 01.jpg │ ├── 02.jpg │ ├── 03.jpg │ ├── bg-header.png │ ├── logo.png │ ├── next.png │ └── prev.png ├── index.html └── style.css ├── sorteio-aleatorio ├── index.html ├── isnatural.test.js ├── jasmine │ ├── .codeclimate.yml │ ├── .editorconfig │ ├── .github │ │ ├── CONTRIBUTING.md │ │ └── ISSUE_TEMPLATE.md │ ├── .gitignore │ ├── .gitmodules │ ├── .jshintrc │ ├── .npmignore │ ├── .rspec │ ├── .travis.yml │ ├── Gemfile │ ├── Gruntfile.js │ ├── MANIFEST.in │ ├── MIT.LICENSE │ ├── README.md │ ├── RELEASE.md │ ├── Rakefile │ ├── bower.json │ ├── grunt │ │ ├── config │ │ │ ├── compass.js │ │ │ ├── compress.js │ │ │ ├── concat.js │ │ │ └── jshint.js │ │ ├── tasks │ │ │ ├── build_standalone.js │ │ │ └── version.js │ │ └── templates │ │ │ ├── SpecRunner.html.jst │ │ │ ├── licenseBanner.js.jst │ │ │ └── version.rb.jst │ ├── images │ │ ├── __init__.py │ │ ├── jasmine-horizontal.png │ │ ├── jasmine-horizontal.svg │ │ └── jasmine_favicon.png │ ├── jasmine-core.gemspec │ ├── lib │ │ ├── console │ │ │ └── console.js │ │ ├── jasmine-core.js │ │ ├── jasmine-core.rb │ │ └── jasmine-core │ │ │ ├── __init__.py │ │ │ ├── boot.js │ │ │ ├── boot │ │ │ ├── boot.js │ │ │ └── node_boot.js │ │ │ ├── core.py │ │ │ ├── example │ │ │ ├── node_example │ │ │ │ ├── lib │ │ │ │ │ └── jasmine_examples │ │ │ │ │ │ ├── Player.js │ │ │ │ │ │ └── Song.js │ │ │ │ └── spec │ │ │ │ │ ├── helpers │ │ │ │ │ └── jasmine_examples │ │ │ │ │ │ └── SpecHelper.js │ │ │ │ │ └── jasmine_examples │ │ │ │ │ └── PlayerSpec.js │ │ │ ├── spec │ │ │ │ ├── PlayerSpec.js │ │ │ │ └── SpecHelper.js │ │ │ └── src │ │ │ │ ├── Player.js │ │ │ │ └── Song.js │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ ├── jasmine.js │ │ │ ├── json2.js │ │ │ ├── node_boot.js │ │ │ ├── spec │ │ │ └── version.rb │ ├── package.json │ ├── release_notes │ │ ├── 1.3.0.md │ │ ├── 1.3.1.md │ │ ├── 2.0.1.md │ │ ├── 2.0.2.md │ │ ├── 2.1.0.md │ │ ├── 2.1.1.md │ │ ├── 2.1.2.md │ │ ├── 2.1.3.md │ │ ├── 2.2.0.md │ │ ├── 2.2.1.md │ │ ├── 2.3.0.md │ │ ├── 2.3.1.md │ │ ├── 2.3.2.md │ │ ├── 2.3.3.md │ │ ├── 2.3.4.md │ │ ├── 2.4.0.md │ │ ├── 2.4.1.md │ │ ├── 2.5.0.md │ │ ├── 2.5.1.md │ │ ├── 2.5.2.md │ │ ├── 20.md │ │ └── older_versions.md │ ├── requirements.txt │ ├── setup.py │ ├── spec │ │ ├── console │ │ │ └── ConsoleReporterSpec.js │ │ ├── core │ │ │ ├── CallTrackerSpec.js │ │ │ ├── ClearStackSpec.js │ │ │ ├── ClockSpec.js │ │ │ ├── DelayedFunctionSchedulerSpec.js │ │ │ ├── EnvSpec.js │ │ │ ├── ExceptionFormatterSpec.js │ │ │ ├── ExceptionsSpec.js │ │ │ ├── ExpectationResultSpec.js │ │ │ ├── ExpectationSpec.js │ │ │ ├── JsApiReporterSpec.js │ │ │ ├── MockDateSpec.js │ │ │ ├── PrettyPrintSpec.js │ │ │ ├── QueueRunnerSpec.js │ │ │ ├── ReportDispatcherSpec.js │ │ │ ├── SpecSpec.js │ │ │ ├── SpyRegistrySpec.js │ │ │ ├── SpySpec.js │ │ │ ├── SpyStrategySpec.js │ │ │ ├── SuiteSpec.js │ │ │ ├── TimerSpec.js │ │ │ ├── TreeProcessorSpec.js │ │ │ ├── UtilSpec.js │ │ │ ├── asymmetric_equality │ │ │ │ ├── AnySpec.js │ │ │ │ ├── AnythingSpec.js │ │ │ │ ├── ArrayContainingSpec.js │ │ │ │ ├── ObjectContainingSpec.js │ │ │ │ └── StringMatchingSpec.js │ │ │ ├── formatErrorMsgSpec.js │ │ │ ├── integration │ │ │ │ ├── CustomMatchersSpec.js │ │ │ │ ├── EnvSpec.js │ │ │ │ └── SpecRunningSpec.js │ │ │ └── matchers │ │ │ │ ├── DiffBuilderSpec.js │ │ │ │ ├── NullDiffBuilderSpec.js │ │ │ │ ├── ObjectPathSpec.js │ │ │ │ ├── matchersUtilSpec.js │ │ │ │ ├── toBeCloseToSpec.js │ │ │ │ ├── toBeDefinedSpec.js │ │ │ │ ├── toBeFalsySpec.js │ │ │ │ ├── toBeGreaterThanOrEqualSpec.js │ │ │ │ ├── toBeGreaterThanSpec.js │ │ │ │ ├── toBeLessThanOrEqualSpec.js │ │ │ │ ├── toBeLessThanSpec.js │ │ │ │ ├── toBeNaNSpec.js │ │ │ │ ├── toBeNullSpec.js │ │ │ │ ├── toBeSpec.js │ │ │ │ ├── toBeTruthySpec.js │ │ │ │ ├── toBeUndefinedSpec.js │ │ │ │ ├── toContainSpec.js │ │ │ │ ├── toEqualSpec.js │ │ │ │ ├── toHaveBeenCalledSpec.js │ │ │ │ ├── toHaveBeenCalledTimesSpec.js │ │ │ │ ├── toHaveBeenCalledWithSpec.js │ │ │ │ ├── toMatchSpec.js │ │ │ │ ├── toThrowErrorSpec.js │ │ │ │ └── toThrowSpec.js │ │ ├── helpers │ │ │ ├── BrowserFlags.js │ │ │ ├── checkForSet.js │ │ │ ├── defineJasmineUnderTest.js │ │ │ └── nodeDefineJasmineUnderTest.js │ │ ├── html │ │ │ ├── HtmlReporterSpec.js │ │ │ ├── HtmlSpecFilterSpec.js │ │ │ ├── MatchersHtmlSpec.js │ │ │ ├── PrettyPrintHtmlSpec.js │ │ │ ├── QueryStringSpec.js │ │ │ └── ResultsNodeSpec.js │ │ ├── javascripts │ │ │ └── support │ │ │ │ └── jasmine_selenium_runner.yml │ │ ├── npmPackage │ │ │ └── npmPackageSpec.js │ │ ├── performance │ │ │ ├── large_object_test.js │ │ │ └── performance_test.js │ │ └── support │ │ │ ├── jasmine-performance.json │ │ │ ├── jasmine-performance.yml │ │ │ ├── jasmine.json │ │ │ ├── jasmine.yml │ │ │ └── jasmine_helper.rb │ ├── src │ │ ├── console │ │ │ ├── ConsoleReporter.js │ │ │ └── requireConsole.js │ │ ├── core │ │ │ ├── CallTracker.js │ │ │ ├── ClearStack.js │ │ │ ├── Clock.js │ │ │ ├── DelayedFunctionScheduler.js │ │ │ ├── Env.js │ │ │ ├── ExceptionFormatter.js │ │ │ ├── Expectation.js │ │ │ ├── ExpectationResult.js │ │ │ ├── JsApiReporter.js │ │ │ ├── MockDate.js │ │ │ ├── Order.js │ │ │ ├── PrettyPrinter.js │ │ │ ├── QueueRunner.js │ │ │ ├── ReportDispatcher.js │ │ │ ├── Spec.js │ │ │ ├── Spy.js │ │ │ ├── SpyRegistry.js │ │ │ ├── SpyStrategy.js │ │ │ ├── Suite.js │ │ │ ├── Timer.js │ │ │ ├── TreeProcessor.js │ │ │ ├── asymmetric_equality │ │ │ │ ├── Any.js │ │ │ │ ├── Anything.js │ │ │ │ ├── ArrayContaining.js │ │ │ │ ├── ObjectContaining.js │ │ │ │ └── StringMatching.js │ │ │ ├── base.js │ │ │ ├── errors.js │ │ │ ├── formatErrorMsg.js │ │ │ ├── matchers │ │ │ │ ├── DiffBuilder.js │ │ │ │ ├── NullDiffBuilder.js │ │ │ │ ├── ObjectPath.js │ │ │ │ ├── matchersUtil.js │ │ │ │ ├── requireMatchers.js │ │ │ │ ├── toBe.js │ │ │ │ ├── toBeCloseTo.js │ │ │ │ ├── toBeDefined.js │ │ │ │ ├── toBeFalsy.js │ │ │ │ ├── toBeGreaterThan.js │ │ │ │ ├── toBeGreaterThanOrEqual.js │ │ │ │ ├── toBeLessThan.js │ │ │ │ ├── toBeLessThanOrEqual.js │ │ │ │ ├── toBeNaN.js │ │ │ │ ├── toBeNull.js │ │ │ │ ├── toBeTruthy.js │ │ │ │ ├── toBeUndefined.js │ │ │ │ ├── toContain.js │ │ │ │ ├── toEqual.js │ │ │ │ ├── toHaveBeenCalled.js │ │ │ │ ├── toHaveBeenCalledTimes.js │ │ │ │ ├── toHaveBeenCalledWith.js │ │ │ │ ├── toMatch.js │ │ │ │ ├── toThrow.js │ │ │ │ └── toThrowError.js │ │ │ ├── requireCore.js │ │ │ ├── requireInterface.js │ │ │ └── util.js │ │ ├── html │ │ │ ├── HtmlReporter.js │ │ │ ├── HtmlSpecFilter.js │ │ │ ├── QueryString.js │ │ │ ├── ResultsNode.js │ │ │ ├── _HTMLReporter.scss │ │ │ ├── jasmine.scss │ │ │ └── requireHtml.js │ │ ├── templates │ │ │ ├── example_project_jasmine_tags.html.erb │ │ │ ├── version.js.erb │ │ │ └── version.rb.erb │ │ └── version.js │ ├── travis-core-script.sh │ ├── travis-docs-script.sh │ └── travis-node-script.sh ├── livro.js ├── sorteio.js └── sorteio.test.js ├── star-rating ├── HP_LP3065.jpg ├── MacBook.jpg ├── iMac.jpg ├── iPhone.jpg ├── iPod_Classic.jpg ├── iPod_Nano.jpg ├── index.html ├── retorno-votacao.php └── star_groups.jpg ├── static-server-ajax ├── .gitignore ├── Gruntfile.js ├── README.md ├── app.js ├── html.js ├── package.json ├── public │ ├── css │ │ └── main.css │ ├── favicon.ico │ └── javascript │ │ └── all.js ├── router.js ├── seo.js ├── src │ ├── css │ │ └── main.css │ └── javascript │ │ ├── all.js │ │ └── xhr.js └── views │ ├── 404.html │ ├── about-us.html │ ├── contact.html │ ├── index.html │ └── partials │ ├── footer.hbs │ └── header.hbs ├── test-pivot ├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── README.md ├── css │ └── all.css ├── favicon.ico ├── images │ ├── arrow-green.png │ ├── arrow-white.png │ ├── carrossel │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ ├── 03.jpg │ │ ├── 04.jpg │ │ └── 05.jpg │ ├── img-content.png │ ├── list-bullet.png │ ├── logo-footer.png │ ├── logo.png │ └── sprite-social-midia.png ├── index.html ├── javascript │ └── all.js ├── package.json └── src │ ├── css │ ├── carrossel.css │ ├── form.css │ ├── main.css │ └── normaset.css │ └── javascript │ ├── main.js │ └── slideshow.js ├── text-images ├── index.html ├── mickey.png ├── minnie.png └── tijolo.png ├── time-counter ├── index.html ├── test │ ├── MIT.LICENSE │ ├── index.html │ ├── lib │ │ └── jasmine-2.0.3 │ │ │ ├── boot.js │ │ │ ├── console.js │ │ │ ├── jasmine-html.js │ │ │ ├── jasmine.css │ │ │ ├── jasmine.js │ │ │ └── jasmine_favicon.png │ └── spec │ │ └── time-counter_spec.js └── time-counter.js ├── time-redirect └── index.html ├── tt ├── README.md ├── css │ └── style.css ├── javascript │ ├── tt-literal.js │ ├── tt-module.js │ ├── tt-prototype.js │ └── tt.js ├── tt-literal.html ├── tt-module.html ├── tt-prototype.html └── tt.html ├── unip └── index.html ├── upload-ajax ├── img-gigante.jpg ├── index.html ├── upload.php └── uploads │ └── .gitkeep ├── verify-user-on-db ├── dump.sql ├── index.php └── usuario.php └── yt-iframe-api ├── index.html └── youtube.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /100-with-fixed-width-column/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbruno/examples/HEAD/100-with-fixed-width-column/index.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wbruno/examples/HEAD/README.md -------------------------------------------------------------------------------- /ajax-2000ms/contato.html: -------------------------------------------------------------------------------- 1 |